Otherwise M-x customize-face will show them as lisp-expressions rather
than nice widgets.
* lisp/ansi-color.el (ansi-color-bold):
(ansi-color-italic):
(ansi-color-underline):
* lisp/faces.el (mode-line): Don't quote the face we're inheriting
from.
:group 'processes)
(defface ansi-color-bold
- '((t :inherit 'bold))
+ '((t :inherit bold))
"Face used to render bold text."
:group 'ansi-colors
:version "28.1")
:version "28.1")
(defface ansi-color-italic
- '((t :inherit 'italic))
+ '((t :inherit italic))
"Face used to render italic text."
:group 'ansi-colors
:version "28.1")
(defface ansi-color-underline
- '((t :inherit 'underline))
+ '((t :inherit underline))
"Face used to render underlined text."
:group 'ansi-colors
:version "28.1")
(defface mode-line
'((((class color) (min-colors 88))
:box (:line-width -1 :style released-button)
- :inherit 'variable-pitch
+ :inherit variable-pitch
:background "grey75" :foreground "black")
(t
:inverse-video t
- :inherit 'variable-pitch))
+ :inherit variable-pitch))
"Basic mode line face for selected window."
:version "21.1"
:group 'mode-line-faces