]> git.eshelyaron.com Git - emacs.git/commitdiff
(mode-line-modified): Fix case of "Buffer is modified".
authorGlenn Morris <rgm@gnu.org>
Tue, 23 Jun 2009 07:39:40 +0000 (07:39 +0000)
committerGlenn Morris <rgm@gnu.org>
Tue, 23 Jun 2009 07:39:40 +0000 (07:39 +0000)
lisp/ChangeLog
lisp/bindings.el

index 25948b02375460f4991a3822e1cad2b297869bd2..104a1bd9c085a7a1a9b4f97297a3be77f52aed91 100644 (file)
@@ -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.
index 88073a85da1a946b69f407f06b11b8e0aaeb4bec..5cd0872206014b6fde4d310a01d6425e68b88648 100644 (file)
@@ -257,8 +257,8 @@ Normally nil in most modes, since there is no process to display.")
                                         (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))