diff options
| author | Glenn Morris | 2012-10-06 12:55:47 -0700 |
|---|---|---|
| committer | Glenn Morris | 2012-10-06 12:55:47 -0700 |
| commit | d1aae61450d42c7ce84ae7df9e35628f0f221a19 (patch) | |
| tree | ab729a372b0fd578ec45d66e3a74da87df37944b /lisp | |
| parent | 27359e9976597097d92791b79c65cb10411c8658 (diff) | |
| download | emacs-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')
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/emulation/crisp.el | 6 | ||||
| -rw-r--r-- | lisp/eshell/esh-mode.el | 6 | ||||
| -rw-r--r-- | lisp/strokes.el | 5 |
4 files changed, 14 insertions, 8 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f2cda6f9f6a..07f68f155c3 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,10 @@ | |||
| 1 | 2012-10-06 Glenn Morris <rgm@gnu.org> | 1 | 2012-10-06 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * strokes.el (strokes-modeline-string): | ||
| 4 | * emulation/crisp.el (crisp-mode-modeline-string): | ||
| 5 | * eshell/esh-mode.el (eshell-status-in-modeline): | ||
| 6 | Aliases to defcustoms must come before the defcustom. | ||
| 7 | |||
| 3 | * calendar/cal-tex.el (cal-tex-diary, cal-tex-cursor-week) | 8 | * calendar/cal-tex.el (cal-tex-diary, cal-tex-cursor-week) |
| 4 | (cal-tex-cursor-week2, cal-tex-cursor-week-iso) | 9 | (cal-tex-cursor-week2, cal-tex-cursor-week-iso) |
| 5 | (cal-tex-cursor-week-monday): Doc fixes. | 10 | (cal-tex-cursor-week-monday): Doc fixes. |
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 @@ | |||
| 171 | All the bindings are done here instead of globally to try and be | 171 | All the bindings are done here instead of globally to try and be |
| 172 | nice to the world.") | 172 | nice to the world.") |
| 173 | 173 | ||
| 174 | (define-obsolete-variable-alias 'crisp-mode-modeline-string | ||
| 175 | 'crisp-mode-mode-line-string "24.3") | ||
| 176 | |||
| 174 | (defcustom crisp-mode-mode-line-string " *CRiSP*" | 177 | (defcustom crisp-mode-mode-line-string " *CRiSP*" |
| 175 | "String to display in the mode line when CRiSP emulation mode is enabled." | 178 | "String to display in the mode line when CRiSP emulation mode is enabled." |
| 176 | :type 'string | 179 | :type 'string |
| 177 | :group 'crisp) | 180 | :group 'crisp) |
| 178 | 181 | ||
| 179 | (define-obsolete-variable-alias 'crisp-mode-modeline-string | ||
| 180 | 'crisp-mode-mode-line-string "24.3") | ||
| 181 | |||
| 182 | ;;;###autoload | 182 | ;;;###autoload |
| 183 | (defcustom crisp-mode nil | 183 | (defcustom crisp-mode nil |
| 184 | "Track status of CRiSP emulation mode. | 184 | "Track status of CRiSP emulation mode. |
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 | ||
diff --git a/lisp/strokes.el b/lisp/strokes.el index 62a8528f25d..9a3a7608d2b 100644 --- a/lisp/strokes.el +++ b/lisp/strokes.el | |||
| @@ -212,13 +212,14 @@ static char * stroke_xpm[] = { | |||
| 212 | :link '(emacs-commentary-link "strokes") | 212 | :link '(emacs-commentary-link "strokes") |
| 213 | :group 'mouse) | 213 | :group 'mouse) |
| 214 | 214 | ||
| 215 | (define-obsolete-variable-alias 'strokes-modeline-string 'strokes-lighter | ||
| 216 | "24.3") | ||
| 217 | |||
| 215 | (defcustom strokes-lighter " Strokes" | 218 | (defcustom strokes-lighter " Strokes" |
| 216 | "Mode line identifier for Strokes mode." | 219 | "Mode line identifier for Strokes mode." |
| 217 | :type 'string | 220 | :type 'string |
| 218 | :group 'strokes) | 221 | :group 'strokes) |
| 219 | 222 | ||
| 220 | (define-obsolete-variable-alias 'strokes-modeline-string 'strokes-lighter "24.3") | ||
| 221 | |||
| 222 | (defcustom strokes-character ?@ | 223 | (defcustom strokes-character ?@ |
| 223 | "Character used when drawing strokes in the strokes buffer. | 224 | "Character used when drawing strokes in the strokes buffer. |
| 224 | \(The default is `@', which works well.\)" | 225 | \(The default is `@', which works well.\)" |