changeset 58586:7bc75f3f915a

(menu-bar-options-save): For the options that are toggled with menu-bar-make-mm-toggle, don't check for customized-value prop.
author Richard M. Stallman <rms@gnu.org>
date Sat, 27 Nov 2004 19:01:02 +0000
parents d6ce53475b81
children 275bfc016770
files lisp/menu-bar.el
diffstat 1 files changed, 8 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/menu-bar.el	Sat Nov 27 18:22:57 2004 +0000
+++ b/lisp/menu-bar.el	Sat Nov 27 19:01:02 2004 +0000
@@ -634,12 +634,17 @@
   "Save current values of Options menu items using Custom."
   (interactive)
   (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))
+      (and (customize-mark-to-save elt)
+	   (setq need-save t)))
     ;; These are set with `customize-set-variable'.
-    (dolist (elt '(line-number-mode column-number-mode scroll-bar-mode
+    (dolist (elt '(scroll-bar-mode
 		   debug-on-quit debug-on-error menu-bar-mode tool-bar-mode
 		   save-place uniquify-buffer-name-style fringe-mode
-		   case-fold-search cua-mode show-paren-mode
-		   transient-mark-mode global-font-lock-mode
+		   case-fold-search 
 		   display-time-mode auto-compression-mode
 		   current-language-environment default-input-method
 		   ;; Saving `text-mode-hook' is somewhat questionable,