]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix last change
authorEli Zaretskii <eliz@gnu.org>
Wed, 7 Jul 2021 19:53:28 +0000 (22:53 +0300)
committerEli Zaretskii <eliz@gnu.org>
Wed, 7 Jul 2021 19:53:28 +0000 (22:53 +0300)
* lisp/faces.el (tty-menu-enabled-face, tty-menu-disabled-face):
Define for monochrome displays.

lisp/faces.el

index 9c818d51366af3c892a036aae89e32678b011d45..a0a47a5cacf3b1f1ff142940237981776768d147 100644 (file)
@@ -2913,18 +2913,22 @@ It is used for characters of no fonts too."
 
 ;; Faces for TTY menus.
 (defface tty-menu-enabled-face
-  '((t
-     :foreground "yellow" :background "blue" :weight bold))
+  '((((class color))
+     :foreground "yellow" :background "blue" :weight bold)
+    t :weight bold)
   "Face for displaying enabled items in TTY menus."
-  :group 'basic-faces)
+  :group 'basic-faces
+  :version "28.1")
 
 (defface tty-menu-disabled-face
   '((((class color) (min-colors 16))
      :foreground "lightgray" :background "blue")
-    (t
-     :foreground "white" :background "blue"))
+    (((class color))
+     :foreground "white" :background "blue")
+    t :inherit shadow)
   "Face for displaying disabled items in TTY menus."
-  :group 'basic-faces)
+  :group 'basic-faces
+  :version "28.1")
 
 (defface tty-menu-selected-face
   '((((class color))