comparison lisp/eshell/em-alias.el @ 54565:d41b30e64d75

* eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance): Comment out broken info-links to incomplete Info manual.
author Juri Linkov <juri@jurta.org>
date Fri, 26 Mar 2004 07:02:30 +0000
parents 695cf19ef79e
children f243dc772a99
comparison
equal deleted inserted replaced
54564:9915b3ca4e0f 54565:d41b30e64d75
26 (eval-when-compile (require 'esh-maint)) 26 (eval-when-compile (require 'esh-maint))
27 27
28 (defgroup eshell-alias nil 28 (defgroup eshell-alias nil
29 "Command aliases allow for easy definition of alternate commands." 29 "Command aliases allow for easy definition of alternate commands."
30 :tag "Command aliases" 30 :tag "Command aliases"
31 :link '(info-link "(eshell)Command aliases") 31 ;; :link '(info-link "(eshell)Command aliases")
32 :group 'eshell-module) 32 :group 'eshell-module)
33 33
34 ;;; Commentary: 34 ;;; Commentary:
35 35
36 ;; Command aliases greatly simplify the definition of new commands. 36 ;; Command aliases greatly simplify the definition of new commands.
101 ;; reached. 101 ;; reached.
102 102
103 (defcustom eshell-bad-command-tolerance 3 103 (defcustom eshell-bad-command-tolerance 3
104 "*The number of failed commands to ignore before creating an alias." 104 "*The number of failed commands to ignore before creating an alias."
105 :type 'integer 105 :type 'integer
106 :link '(custom-manual "(eshell)Auto-correction of bad commands") 106 ;; :link '(custom-manual "(eshell)Auto-correction of bad commands")
107 :group 'eshell-alias) 107 :group 'eshell-alias)
108 108
109 ;;; 109 ;;;
110 ;; Whenever the same bad command name is encountered this many times, 110 ;; Whenever the same bad command name is encountered this many times,
111 ;; the user will be prompted in the minibuffer to provide an alias 111 ;; the user will be prompted in the minibuffer to provide an alias