1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

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.
This commit is contained in:
Glenn Morris 2012-10-06 12:55:47 -07:00
parent 27359e9976
commit d1aae61450
4 changed files with 14 additions and 8 deletions

View file

@ -212,13 +212,14 @@ static char * stroke_xpm[] = {
:link '(emacs-commentary-link "strokes")
:group 'mouse)
(define-obsolete-variable-alias 'strokes-modeline-string 'strokes-lighter
"24.3")
(defcustom strokes-lighter " Strokes"
"Mode line identifier for Strokes mode."
:type 'string
:group 'strokes)
(define-obsolete-variable-alias 'strokes-modeline-string 'strokes-lighter "24.3")
(defcustom strokes-character ?@
"Character used when drawing strokes in the strokes buffer.
\(The default is `@', which works well.\)"