]> git.eshelyaron.com Git - emacs.git/commitdiff
(menu-bar-options-save, menu-bar-showhide-menu): Add size-indication-mode.
authorLute Kamstra <lute@gnu.org>
Thu, 21 Apr 2005 10:31:01 +0000 (10:31 +0000)
committerLute Kamstra <lute@gnu.org>
Thu, 21 Apr 2005 10:31:01 +0000 (10:31 +0000)
lisp/ChangeLog
lisp/menu-bar.el

index a6d08dd944e33107977480ff614a6d420fb5c62f..d4a67928ab7e08713f43ef85e3aae2011ea48731 100644 (file)
@@ -1,3 +1,8 @@
+2005-04-21  Lute Kamstra  <lute@gnu.org>
+
+       * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu): Add
+       size-indication-mode.
+
 2005-04-21  Kenichi Handa  <handa@m17n.org>
 
        * international/mule-cmds.el: Add autoload for widget-value in
index d0d42b9666d66b46687860b73f0f8ce7df933d6d..ee51e8c349afdc64e9602e1803a0ff8b72b13b29 100644 (file)
@@ -639,9 +639,9 @@ by \"Save Options\" in Custom buffers.")
   (let ((need-save nil))
     ;; These are set with menu-bar-make-mm-toggle, which does not
     ;; put on a customized-value property.
-    (dolist (elt '(line-number-mode column-number-mode cua-mode show-paren-mode
-                  transient-mark-mode global-font-lock-mode
-                  blink-cursor-mode))
+    (dolist (elt '(line-number-mode column-number-mode size-indication-mode
+                  cua-mode show-paren-mode transient-mark-mode
+                  global-font-lock-mode blink-cursor-mode))
       (and (customize-mark-to-save elt)
           (setq need-save t)))
     ;; These are set with `customize-set-variable'.
@@ -692,6 +692,11 @@ by \"Save Options\" in Custom buffers.")
                           "Line Numbers"
                           "Show the current line number in the mode line"))
 
+(define-key menu-bar-showhide-menu [size-indication-mode]
+  (menu-bar-make-mm-toggle size-indication-mode
+                          "Size Indication"
+                          "Show the size of the buffer in the mode line"))
+
 (define-key menu-bar-showhide-menu [linecolumn-separator]
   '("--"))