]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/faces.el: Fix a typo.
authorEli Zaretskii <eliz@gnu.org>
Wed, 7 Jul 2021 20:10:52 +0000 (23:10 +0300)
committerEli Zaretskii <eliz@gnu.org>
Wed, 7 Jul 2021 20:10:52 +0000 (23:10 +0300)
lisp/faces.el

index a0a47a5cacf3b1f1ff142940237981776768d147..af2f37df967a164501b63c4e9eb63b26e0f7360e 100644 (file)
@@ -2915,7 +2915,7 @@ It is used for characters of no fonts too."
 (defface tty-menu-enabled-face
   '((((class color))
      :foreground "yellow" :background "blue" :weight bold)
-    t :weight bold)
+    (t :weight bold))
   "Face for displaying enabled items in TTY menus."
   :group 'basic-faces
   :version "28.1")
@@ -2925,7 +2925,7 @@ It is used for characters of no fonts too."
      :foreground "lightgray" :background "blue")
     (((class color))
      :foreground "white" :background "blue")
-    t :inherit shadow)
+    (t :inherit shadow))
   "Face for displaying disabled items in TTY menus."
   :group 'basic-faces
   :version "28.1")