diff options
Diffstat (limited to 'emacs/guix-config.el.in')
| -rw-r--r-- | emacs/guix-config.el.in | 16 | 
1 files changed, 7 insertions, 9 deletions
| diff --git a/emacs/guix-config.el.in b/emacs/guix-config.el.in index 16434cecea..bd821596c4 100644 --- a/emacs/guix-config.el.in +++ b/emacs/guix-config.el.in @@ -1,6 +1,7 @@  ;;; guix-config.el --- Compile-time configuration of Guix.  ;; Copyright © 2015 Mathieu Lirzin <mthl@openmailbox.org> +;; Copyright © 2015 Alex Kost <alezost@gmail.com>  ;; This file is part of GNU Guix. @@ -19,21 +20,18 @@  ;;; Code: -(defconst guix-emacs-interface-directory +(defconst guix-config-emacs-interface-directory    (replace-regexp-in-string "${prefix}" "@prefix@" "@emacsuidir@")) -(defconst guix-state-directory +(defconst guix-config-state-directory    ;; This must match `NIX_STATE_DIR' as defined in `daemon.am'.    (or (getenv "NIX_STATE_DIR") "@guix_localstatedir@/guix")) -(defvar guix-guile-program "@GUILE@" -  "Name of the guile executable used for Guix REPL. -May be either a string (the name of the executable) or a list of -strings of the form: +(defconst guix-config-guile-program "@GUILE@" +  "Name of the 'guile' executable defined at configure time.") -  (NAME . ARGS) - -Where ARGS is a list of arguments to the guile program.") +(defconst guix-config-dot-program "@DOT_USER_PROGRAM@" +  "Name of the 'dot' executable defined at configure time.")  (provide 'guix-config) | 
