diff options
author | Mathieu Lirzin <mthl@openmailbox.org> | 2015-08-06 11:36:53 +0200 |
---|---|---|
committer | Mathieu Lirzin <mthl@openmailbox.org> | 2015-08-30 19:20:12 +0200 |
commit | bd6163d13f6445b9a1ec0f85e4a19b9f73ab74ea (patch) | |
tree | 99396ace587f2c69c05882e88910fba37fb605fa /emacs/guix-init.el.in | |
parent | eb097f36b1c3e7a25f1ce212670e8a19788fd195 (diff) | |
download | guix-bd6163d13f6445b9a1ec0f85e4a19b9f73ab74ea.tar.gz |
build: Produce 'guix-config' instead of using compile-time tricks.
* emacs/guix-{init,profiles}.el.in: Rename to ... * emacs/guix-{init,profiles}.el: ... these. New files. Use 'guix-config'. * emacs/guix-config.el.in: New file. * emacs.am (nodist_lisp_DATA): Add it. Move them to ... (ELFILES): ... here. * .gitignore, configure.ac: Adjust accordingly.
Diffstat (limited to 'emacs/guix-init.el.in')
-rw-r--r-- | emacs/guix-init.el.in | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/emacs/guix-init.el.in b/emacs/guix-init.el.in deleted file mode 100644 index 728bc375c2..0000000000 --- a/emacs/guix-init.el.in +++ /dev/null @@ -1,19 +0,0 @@ -(require 'guix-autoloads) - -(defvar guix-load-path - (replace-regexp-in-string "${prefix}" "@prefix@" "@emacsuidir@") - "Directory with scheme files for \"guix.el\" package.") - -(defcustom guix-package-enable-at-startup t - "If non-nil, activate Emacs packages installed in a user profile. -Set this variable to nil before requiring `guix-init' file to -avoid loading autoloads of Emacs packages installed in -`guix-user-profile'." - :type 'boolean - :group 'guix) - -(when guix-package-enable-at-startup - (require 'guix-emacs) - (guix-emacs-load-autoloads 'all)) - -(provide 'guix-init) |