]> git.eshelyaron.com Git - emacs.git/commitdiff
Make sure we only act on edited widgets in Custom-save
authorMauro Aranda <maurooaranda@gmail.com>
Fri, 14 Aug 2020 14:40:40 +0000 (16:40 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Fri, 14 Aug 2020 14:40:40 +0000 (16:40 +0200)
* lisp/cus-edit.el (Custom-save): Only act on edited widgets in the
buffer.  If we attempt to redraw all widgets, we confuse
custom-variable-modified-p, or we end up drawing State buttons for
all options, including the hidden ones (bug#42801).

lisp/cus-edit.el

index 5ec5799f805ccf2d405b6d764d6d1d33affd56f4..23ceb3a857affeb94d79446af529d853c9d5e990 100644 (file)
@@ -801,16 +801,19 @@ has been executed, nil otherwise."
 If a setting was edited and set before, this saves it.  If a
 setting was merely edited before, this sets it then saves it."
   (interactive)
-  (when (custom-command-apply
-        (lambda (child)
-          (when (memq (widget-get child :custom-state)
-                      '(modified set changed rogue))
-            (widget-apply child :custom-mark-to-save)))
-        "Save all settings in this buffer? " t)
-    ;; Save changes to buffer and redraw.
-    (custom-save-all)
-    (dolist (child custom-options)
-      (widget-apply child :custom-state-set-and-redraw))))
+  (let (edited-widgets)
+    (when (custom-command-apply
+          (lambda (child)
+            (when (memq (widget-get child :custom-state)
+                        '(modified set changed rogue))
+               (push child edited-widgets)
+              (widget-apply child :custom-mark-to-save)))
+          "Save all settings in this buffer? " t)
+      ;; Save changes to buffer.
+      (custom-save-all)
+      ;; Redraw and recalculate the state when necessary.
+      (dolist (widget edited-widgets)
+        (widget-apply widget :custom-state-set-and-redraw)))))
 
 (defun custom-reset (_widget &optional event)
   "Select item from reset menu."