diff options
Diffstat (limited to 'lisp/strokes.el')
-rw-r--r-- | lisp/strokes.el | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/strokes.el b/lisp/strokes.el index 8b5aa7a76d8..1ae2300559d 100644 --- a/lisp/strokes.el +++ b/lisp/strokes.el @@ -212,11 +212,13 @@ static char * stroke_xpm[] = { :link '(emacs-commentary-link "strokes") :group 'mouse) -(defcustom strokes-modeline-string " Strokes" - "Modeline identification when Strokes mode is on \(default is \" Strokes\"\)." +(defcustom strokes-lighter " Strokes" + "Mode line identifier for Strokes mode." :type 'string :group 'strokes) +(define-obsolete-variable-alias 'strokes-modeline-string 'strokes-lighter "24.2") + (defcustom strokes-character ?@ "Character used when drawing strokes in the strokes buffer. \(The default is `@', which works well.\)" @@ -1403,7 +1405,7 @@ Encode/decode your strokes with \\[strokes-encode-buffer], \\[strokes-decode-buffer]. \\{strokes-mode-map}" - nil strokes-modeline-string strokes-mode-map + nil strokes-lighter strokes-mode-map :group 'strokes :global t (cond ((not (display-mouse-p)) (error "Can't use Strokes without a mouse")) |