diff options
author | Glenn Morris <rgm@gnu.org> | 2012-10-06 12:55:47 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-10-06 12:55:47 -0700 |
commit | d1aae61450d42c7ce84ae7df9e35628f0f221a19 (patch) | |
tree | ab729a372b0fd578ec45d66e3a74da87df37944b /lisp/emulation/crisp.el | |
parent | 27359e9976597097d92791b79c65cb10411c8658 (diff) | |
download | emacs-d1aae61450d42c7ce84ae7df9e35628f0f221a19.tar.gz |
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/emulation/crisp.el')
-rw-r--r-- | lisp/emulation/crisp.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emulation/crisp.el b/lisp/emulation/crisp.el index c9822b7ec27..01d202f87b5 100644 --- a/lisp/emulation/crisp.el +++ b/lisp/emulation/crisp.el @@ -171,14 +171,14 @@ All the bindings are done here instead of globally to try and be nice to the world.") +(define-obsolete-variable-alias 'crisp-mode-modeline-string + 'crisp-mode-mode-line-string "24.3") + (defcustom crisp-mode-mode-line-string " *CRiSP*" "String to display in the mode line when CRiSP emulation mode is enabled." :type 'string :group 'crisp) -(define-obsolete-variable-alias 'crisp-mode-modeline-string - 'crisp-mode-mode-line-string "24.3") - ;;;###autoload (defcustom crisp-mode nil "Track status of CRiSP emulation mode. |