aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/eshell
diff options
context:
space:
mode:
authorGlenn Morris2012-10-06 12:55:47 -0700
committerGlenn Morris2012-10-06 12:55:47 -0700
commitd1aae61450d42c7ce84ae7df9e35628f0f221a19 (patch)
treeab729a372b0fd578ec45d66e3a74da87df37944b /lisp/eshell
parent27359e9976597097d92791b79c65cb10411c8658 (diff)
downloademacs-d1aae61450d42c7ce84ae7df9e35628f0f221a19.tar.gz
emacs-d1aae61450d42c7ce84ae7df9e35628f0f221a19.zip
Aliases to defcustoms must come before the defcustom.
* strokes.el (strokes-modeline-string): * emulation/crisp.el (crisp-mode-modeline-string): * eshell/esh-mode.el (eshell-status-in-modeline): Aliases to defcustoms must come before the defcustom.
Diffstat (limited to 'lisp/eshell')
-rw-r--r--lisp/eshell/esh-mode.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/eshell/esh-mode.el b/lisp/eshell/esh-mode.el
index 8a9107e5470..673632400f2 100644
--- a/lisp/eshell/esh-mode.el
+++ b/lisp/eshell/esh-mode.el
@@ -193,14 +193,14 @@ This is used by `eshell-watch-for-password-prompt'."
193 :type '(choice (const nil) function) 193 :type '(choice (const nil) function)
194 :group 'eshell-mode) 194 :group 'eshell-mode)
195 195
196(define-obsolete-variable-alias 'eshell-status-in-modeline
197 'eshell-status-in-mode-line "24.3")
198
196(defcustom eshell-status-in-mode-line t 199(defcustom eshell-status-in-mode-line t
197 "If non-nil, let the user know a command is running in the mode line." 200 "If non-nil, let the user know a command is running in the mode line."
198 :type 'boolean 201 :type 'boolean
199 :group 'eshell-mode) 202 :group 'eshell-mode)
200 203
201(define-obsolete-variable-alias 'eshell-status-in-modeline
202 'eshell-status-in-mode-line "24.3")
203
204(defvar eshell-first-time-p t 204(defvar eshell-first-time-p t
205 "A variable which is non-nil the first time Eshell is loaded.") 205 "A variable which is non-nil the first time Eshell is loaded.")
206 206