summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2000-07-18 11:46:21 +0000
committerEli Zaretskii <eliz@gnu.org>2000-07-18 11:46:21 +0000
commit493fa1c58029b89241ac41a138afff6487802005 (patch)
tree8144b44e840a79f35a36b797f3c998cff25854be
parent662cf9d7fa73e07456e5e62e99c2060c45d14054 (diff)
downloademacs-493fa1c58029b89241ac41a138afff6487802005.tar.gz
(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'.
-rw-r--r--lisp/eshell/em-alias.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/eshell/em-alias.el b/lisp/eshell/em-alias.el
index c9a70ed6c23..0fdfee6d205 100644
--- a/lisp/eshell/em-alias.el
+++ b/lisp/eshell/em-alias.el
@@ -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 @@ gained by using this module."
(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 @@ command, which will automatically write them to the file named by
(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)))