# HG changeset patch # User Eli Zaretskii # Date 963920781 0 # Node ID 1ba9e2802a23cc34f6a772f99b37020fc6df14b8 # Parent 30829e002c1b68a40bebea2be94809696f4f265f (eshell-maybe-replace-by-alias): Doc fix. (eshell-alias, eshell-bad-command-tolerance): Replace links to eshell.info with links to eshell, to avoid problems on systems where the manual is installed as `eshell'. diff -r 30829e002c1b -r 1ba9e2802a23 lisp/eshell/em-alias.el --- a/lisp/eshell/em-alias.el Tue Jul 18 11:44:12 2000 +0000 +++ b/lisp/eshell/em-alias.el Tue Jul 18 11:46:21 2000 +0000 @@ -26,7 +26,7 @@ (defgroup eshell-alias nil "Command aliases allow for easy definition of alternate commands." :tag "Command aliases" - :link '(info-link "(eshell.info)Command aliases") + :link '(info-link "(eshell)Command aliases") :group 'eshell-module) ;;; Commentary: @@ -101,7 +101,7 @@ (defcustom eshell-bad-command-tolerance 3 "*The number of failed commands to ignore before creating an alias." :type 'integer - :link '(custom-manual "(eshell.info)Auto-correction of bad commands") + :link '(custom-manual "(eshell)Auto-correction of bad commands") :group 'eshell-alias) ;;; @@ -210,7 +210,7 @@ (defvar eshell-prevent-alias-expansion nil) (defun eshell-maybe-replace-by-alias (command args) - "If COMMAND has an alias definition, call that instead using RAGS." + "If COMMAND has an alias definition, call that instead using ARGS." (unless (and eshell-prevent-alias-expansion (member command eshell-prevent-alias-expansion)) (let ((alias (eshell-lookup-alias command)))