]> git.eshelyaron.com Git - emacs.git/commitdiff
Use read-color in read-face-attribute for color attributes
authorLars Ingebrigtsen <larsi@gnus.org>
Mon, 22 Mar 2021 18:47:25 +0000 (19:47 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 22 Mar 2021 18:50:22 +0000 (19:50 +0100)
* lisp/faces.el (read-face-attribute): Use read-color when
prompting for a color (bug#47316).

lisp/faces.el

index 5ae3906acc2583096746bed6fb6171d752746b13..3ea4c940a32ff18a00a968163667ea7f6ea31704 100644 (file)
@@ -1259,7 +1259,15 @@ of a global face.  Value is the new attribute value."
                   (or (car (rassoc old-value valid))
                       (format "%s" old-value))))
             (setq new-value
-                  (face-read-string face default attribute-name valid))
+                   (if (memq attribute '(:foreground :background))
+                       (let ((color
+                              (read-color
+                               (format-prompt "%s for face `%s'"
+                                              default attribute-name face))))
+                         (if (equal (string-trim color) "")
+                             default
+                           color))
+                    (face-read-string face default attribute-name valid)))
             (if (equal new-value default)
                 ;; Nothing changed, so don't bother with all the stuff
                 ;; below.  In particular, this avoids a non-tty color