diff options
-rw-r--r-- | lisp/faces.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/faces.el b/lisp/faces.el index a0a47a5cacf..af2f37df967 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -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") |