summaryrefslogtreecommitdiff
path: root/lisp/eshell/em-script.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2010-09-25 14:51:55 -0700
committerGlenn Morris <rgm@gnu.org>2010-09-25 14:51:55 -0700
commitec60da520ebe8cc187ab44e17a3645147b75ec57 (patch)
tree96f0a8075fe50dfd85d1e3ab721c94a395409e76 /lisp/eshell/em-script.el
parent4c96435152dd2b343057f80f995910ba806774e8 (diff)
downloademacs-ec60da520ebe8cc187ab44e17a3645147b75ec57.tar.gz
Cosmetic doc fixes for eshell.
* eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el: * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el: * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el: * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el: * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el: * eshell/esh-cmd.el, eshell/esh-ext.el, eshell/esh-io.el: * eshell/esh-mode.el, eshell/esh-proc.el, eshell/esh-test.el: * eshell/esh-util.el, eshell/esh-var.el: Remove leading `*' from docs of faces and defcustoms.
Diffstat (limited to 'lisp/eshell/em-script.el')
-rw-r--r--lisp/eshell/em-script.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/eshell/em-script.el b/lisp/eshell/em-script.el
index 0371ee86b6d..183faa1dd77 100644
--- a/lisp/eshell/em-script.el
+++ b/lisp/eshell/em-script.el
@@ -36,19 +36,19 @@ commands, as a script file."
;;; User Variables:
(defcustom eshell-script-load-hook '(eshell-script-initialize)
- "*A list of functions to call when loading `eshell-script'."
+ "A list of functions to call when loading `eshell-script'."
:type 'hook
:group 'eshell-script)
(defcustom eshell-login-script (expand-file-name "login" eshell-directory-name)
- "*If non-nil, a file to invoke when starting up Eshell interactively.
+ "If non-nil, a file to invoke when starting up Eshell interactively.
This file should be a file containing Eshell commands, where comment
lines begin with '#'."
:type 'file
:group 'eshell-script)
(defcustom eshell-rc-script (expand-file-name "profile" eshell-directory-name)
- "*If non-nil, a file to invoke whenever Eshell is started.
+ "If non-nil, a file to invoke whenever Eshell is started.
This includes when running `eshell-command'."
:type 'file
:group 'eshell-script)