diff options
author | Glenn Morris <rgm@gnu.org> | 2011-03-04 19:59:53 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2011-03-04 19:59:53 -0800 |
commit | 4a0f18a8997ec7b4554cdc33a290654daf4a3080 (patch) | |
tree | 9a790ca45f968cbdbd2784c3e543e74890176d29 | |
parent | 8879add883a672abcf54df796788a68116529a2d (diff) | |
download | emacs-4a0f18a8997ec7b4554cdc33a290654daf4a3080.tar.gz |
esh-module doc fixes.
* lisp/eshell/esh-module.el (eshell-module-unload-hook)
(eshell-modules-list): Remove leading * from defcustom docs.
-rw-r--r-- | lisp/ChangeLog | 3 | ||||
-rw-r--r-- | lisp/eshell/esh-module.el | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9d4743107cf..b0f1a280ae1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2011-03-05 Glenn Morris <rgm@gnu.org> + * eshell/esh-module.el (eshell-module-unload-hook) + (eshell-modules-list): Remove leading * from defcustom docs. + * eshell/esh-util.el (eshell-for): Make it obsolete. * eshell/em-alias.el (eshell/alias, eshell-alias-completions): * eshell/em-dirs.el (eshell-save-some-last-dir): diff --git a/lisp/eshell/esh-module.el b/lisp/eshell/esh-module.el index 41f9e662a95..1581d05889e 100644 --- a/lisp/eshell/esh-module.el +++ b/lisp/eshell/esh-module.el @@ -43,7 +43,7 @@ customizing the variable `eshell-modules-list'." (defcustom eshell-module-unload-hook '(eshell-unload-extension-modules) - "*A hook run when `eshell-module' is unloaded." + "A hook run when `eshell-module' is unloaded." :type 'hook :group 'eshell-module) @@ -61,7 +61,7 @@ customizing the variable `eshell-modules-list'." eshell-script eshell-term eshell-unix) - "*A list of optional add-on modules to be loaded by Eshell. + "A list of optional add-on modules to be loaded by Eshell. Changes will only take effect in future Eshell buffers." :type (append (list 'set ':tag "Supported modules") |