diff options
author | Alex Kost <alezost@gmail.com> | 2015-08-12 20:32:45 +0300 |
---|---|---|
committer | Alex Kost <alezost@gmail.com> | 2015-08-30 18:26:02 +0300 |
commit | 26476d5852f31097994113b88d9c51f1f4378c99 (patch) | |
tree | 89caa9b212fc4958a3abb1cc9c14ffbde8dc7384 /emacs.am | |
parent | 25a2839c9dfb72fc4eddf0621b80023f87fc2e2e (diff) | |
download | patches-26476d5852f31097994113b88d9c51f1f4378c99.tar patches-26476d5852f31097994113b88d9c51f1f4378c99.tar.gz |
emacs: Add help variables.
* emacs/guix-pcomplete.el (guix-pcomplete-parse-package-regexp,
guix-pcomplete-parse-command-regexp,
guix-pcomplete-parse-long-option-regexp,
guix-pcomplete-parse-short-option-regexp,
guix-pcomplete-parse-list-regexp, guix-pcomplete-parse-regexp-group,
guix-pcomplete-systems, guix-pcomplete-hash-formats,
guix-pcomplete-refresh-subsets, guix-pcomplete-key-policies): Move and
rename to ...
* emacs/guix-help-vars.el (guix-help-parse-package-regexp,
guix-help-parse-command-regexp, guix-help-parse-long-option-regexp,
guix-help-parse-short-option-regexp, guix-help-parse-list-regexp,
guix-help-parse-regexp-group, guix-help-system-types,
guix-help-hash-formats, guix-help-refresh-subsets,
guix-help-key-policies): ...here. New file.
(guix-help-parse-option-regexp, guix-help-source-types,
guix-help-verify-options, guix-help-elpa-archives): New variables.
* emacs.am (ELFILES): Add "guix-help-vars.el".
Diffstat (limited to 'emacs.am')
-rw-r--r-- | emacs.am | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ # GNU Guix --- Functional package management for GNU -# Copyright © 2014 Alex Kost <alezost@gmail.com> +# Copyright © 2014, 2015 Alex Kost <alezost@gmail.com> # # This file is part of GNU Guix. # @@ -22,6 +22,7 @@ ELFILES = \ emacs/guix-backend.el \ emacs/guix-base.el \ emacs/guix-emacs.el \ + emacs/guix-help-vars.el \ emacs/guix-history.el \ emacs/guix-info.el \ emacs/guix-list.el \ |