]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix saving faces with attributes that need filtering
authorMauro Aranda <maurooaranda@gmail.com>
Sat, 7 Oct 2023 14:57:18 +0000 (11:57 -0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 14 Oct 2023 07:48:12 +0000 (10:48 +0300)
* lisp/cus-edit.el (custom-face-save): The :shown-value property for
the custom-face widget is supposed to be a value suitable for the
customization widget.  (Bug#66391)

lisp/cus-edit.el

index 1021707907da56decd8170ba0931d878ee478fcf..706e08d56570a3fb34d9fa9ce8a294bed6362a42 100644 (file)
@@ -4148,7 +4148,10 @@ Optional EVENT is the location for the menu."
       ;; If recreating a widget that may have been edited by the user, remember
       ;; to always save the edited value into the :shown-value property, so
       ;; we use that value for the recreated widget.  (Bug#44331)
-      (widget-put widget :shown-value (custom-face-widget-to-spec widget))
+      (let ((child (car (widget-get widget :children))))
+        (if (eq (widget-type child) 'custom-face-edit)
+            (widget-put widget :shown-value `((t ,(widget-value child))))
+          (widget-put widget :shown-value (widget-value child))))
       (custom-face-edit-all widget)
       (widget-put widget :shown-value nil) ; Reset it after we used it.
       (custom-face-mark-to-save widget)