diff options
Diffstat (limited to 'lisp/eshell/em-alias.el')
-rw-r--r-- | lisp/eshell/em-alias.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/eshell/em-alias.el b/lisp/eshell/em-alias.el index 6dcdadf0a5d..6b24c269b30 100644 --- a/lisp/eshell/em-alias.el +++ b/lisp/eshell/em-alias.el @@ -103,7 +103,7 @@ :group 'eshell-module) (defcustom eshell-aliases-file (expand-file-name "alias" eshell-directory-name) - "*The file in which aliases are kept. + "The file in which aliases are kept. Whenever an alias is defined by the user, using the `alias' command, it will be written to this file. Thus, alias definitions (and deletions) are always permanent. This approach was chosen for the @@ -113,13 +113,13 @@ gained by using this module." :group 'eshell-alias) (defcustom eshell-bad-command-tolerance 3 - "*The number of failed commands to ignore before creating an alias." + "The number of failed commands to ignore before creating an alias." :type 'integer ;; :link '(custom-manual "(eshell)Auto-correction of bad commands") :group 'eshell-alias) (defcustom eshell-alias-load-hook '(eshell-alias-initialize) - "*A hook that gets run when `eshell-alias' is loaded." + "A hook that gets run when `eshell-alias' is loaded." :type 'hook :group 'eshell-alias) |