Mercurial > emacs
changeset 103565:aeb4b2f4f239
(mode-line-modified): Fix case of "Buffer is modified".
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Tue, 23 Jun 2009 07:39:40 +0000 |
parents | dbc4954024d6 |
children | 7af1196e07f8 |
files | lisp/ChangeLog lisp/bindings.el |
diffstat | 2 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Tue Jun 23 07:38:25 2009 +0000 +++ b/lisp/ChangeLog Tue Jun 23 07:39:40 2009 +0000 @@ -1,5 +1,7 @@ 2009-06-23 Glenn Morris <rgm@gnu.org> + * bindings.el (mode-line-modified): Fix case of "Buffer is modified". + * textmodes/ispell.el (ispell-local-dictionary): Doc fix. * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
--- a/lisp/bindings.el Tue Jun 23 07:38:25 2009 +0000 +++ b/lisp/bindings.el Tue Jun 23 07:39:40 2009 +0000 @@ -257,8 +257,8 @@ (save-selected-window (select-window window) (if (buffer-modified-p) - "M" - "Not m"))))) + "m" + "not m"))))) 'local-map (purecopy (make-mode-line-mouse-map 'mouse-1 #'mode-line-toggle-modified)) 'mouse-face 'mode-line-highlight))