comparison lisp/eshell/em-alias.el @ 110580:f57f72bb4757

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.
author Glenn Morris <rgm@gnu.org>
date Sat, 25 Sep 2010 14:51:55 -0700
parents 1d1d5d9bd884
children 417b1e4d63cd
comparison
equal deleted inserted replaced
110579:5fabe7db5188 110580:f57f72bb4757
101 :tag "Command aliases" 101 :tag "Command aliases"
102 ;; :link '(info-link "(eshell)Command aliases") 102 ;; :link '(info-link "(eshell)Command aliases")
103 :group 'eshell-module) 103 :group 'eshell-module)
104 104
105 (defcustom eshell-aliases-file (expand-file-name "alias" eshell-directory-name) 105 (defcustom eshell-aliases-file (expand-file-name "alias" eshell-directory-name)
106 "*The file in which aliases are kept. 106 "The file in which aliases are kept.
107 Whenever an alias is defined by the user, using the `alias' command, 107 Whenever an alias is defined by the user, using the `alias' command,
108 it will be written to this file. Thus, alias definitions (and 108 it will be written to this file. Thus, alias definitions (and
109 deletions) are always permanent. This approach was chosen for the 109 deletions) are always permanent. This approach was chosen for the
110 sake of simplicity, since that's pretty much the only benefit to be 110 sake of simplicity, since that's pretty much the only benefit to be
111 gained by using this module." 111 gained by using this module."
112 :type 'file 112 :type 'file
113 :group 'eshell-alias) 113 :group 'eshell-alias)
114 114
115 (defcustom eshell-bad-command-tolerance 3 115 (defcustom eshell-bad-command-tolerance 3
116 "*The number of failed commands to ignore before creating an alias." 116 "The number of failed commands to ignore before creating an alias."
117 :type 'integer 117 :type 'integer
118 ;; :link '(custom-manual "(eshell)Auto-correction of bad commands") 118 ;; :link '(custom-manual "(eshell)Auto-correction of bad commands")
119 :group 'eshell-alias) 119 :group 'eshell-alias)
120 120
121 (defcustom eshell-alias-load-hook '(eshell-alias-initialize) 121 (defcustom eshell-alias-load-hook '(eshell-alias-initialize)
122 "*A hook that gets run when `eshell-alias' is loaded." 122 "A hook that gets run when `eshell-alias' is loaded."
123 :type 'hook 123 :type 'hook
124 :group 'eshell-alias) 124 :group 'eshell-alias)
125 125
126 (defvar eshell-command-aliases-list nil 126 (defvar eshell-command-aliases-list nil
127 "A list of command aliases currently defined by the user. 127 "A list of command aliases currently defined by the user.