mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Prefer defface's ':weight bold' to obsolete alias ':bold t'
* etc/themes/adwaita-theme.el (adwaita): * etc/themes/manoj-dark-theme.el (manoj-dark): * etc/themes/modus-themes.el (modus-themes-faces): * lisp/gnus/gnus-srvr.el (gnus-server-agent, gnus-server-cloud) (gnus-server-opened, gnus-server-denied, gnus-server-offline): * lisp/gnus/gnus.el (gnus-group-news-1, gnus-group-news-2) (gnus-group-news-3, gnus-group-news-4, gnus-group-news-5) (gnus-group-news-6, gnus-group-news-low, gnus-group-mail-1) (gnus-group-mail-2, gnus-group-mail-3, gnus-group-mail-low-empty) (gnus-group-mail-low, gnus-summary-high-ticked) (gnus-summary-high-ancient, gnus-summary-high-undownloaded) (gnus-summary-high-unread, gnus-summary-high-read): * lisp/gnus/message.el (message-header-to, message-header-cc) (message-header-subject, message-header-newsgroups) (message-header-other, message-header-name, message-header-xheader) (message-separator, message-cited-text-1, message-cited-text-2) (message-cited-text-3, message-cited-text-4, message-mml) (message-signature-separator): * lisp/mh-e/mh-e.el (mh-face-data, mh-folder-cur-msg-number) (mh-speedbar-folder-with-unseen-messages) (mh-speedbar-selected-folder-with-unseen-messages): * lisp/net/dictionary.el (dictionary-button-face): * lisp/org/org-faces.el (org-drawer, org-tag, org-list-dt, org-todo) (org-done, org-headline-todo, org-formula, org-agenda-structure) (org-scheduled, org-scheduled-today, org-scheduled-previously) (org-upcoming-deadline): * lisp/proced.el (proced-uninterruptible-sleep-status-code) (proced-executable, proced-cpu, proced-user, proced-time-colon): * lisp/progmodes/erts-mode.el (erts-mode-specification-name) (erts-mode-specification-value): * lisp/progmodes/prolog.el (prolog-font-lock-keywords): * lisp/progmodes/verilog-mode.el (verilog-font-lock-p1800-face) (verilog-font-lock-ams-face) (verilog-font-lock-grouping-keywords-face): * lisp/progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face) (vhdl-font-lock-attribute-face, vhdl-font-lock-enumvalue-face) (vhdl-font-lock-function-face, vhdl-font-lock-directive-face) (vhdl-font-lock-reserved-words-face): Prefer defface attribute ':weight bold' to its obsolete alias ':bold t'. See also Bug#73552.
This commit is contained in:
parent
49f449bb5b
commit
375befcacc
16 changed files with 190 additions and 190 deletions
|
|
@ -1520,24 +1520,24 @@ starting with `not' and followed by regexps."
|
|||
(defface message-header-to
|
||||
'((((class color)
|
||||
(background dark))
|
||||
:foreground "DarkOliveGreen1" :bold t)
|
||||
:foreground "DarkOliveGreen1" :weight bold)
|
||||
(((class color)
|
||||
(background light))
|
||||
:foreground "MidnightBlue" :bold t)
|
||||
:foreground "MidnightBlue" :weight bold)
|
||||
(t
|
||||
:bold t :italic t))
|
||||
:weight bold :italic t))
|
||||
"Face used for displaying To headers."
|
||||
:group 'message-faces)
|
||||
|
||||
(defface message-header-cc
|
||||
'((((class color)
|
||||
(background dark))
|
||||
:foreground "chartreuse1" :bold t)
|
||||
:foreground "chartreuse1" :weight bold)
|
||||
(((class color)
|
||||
(background light))
|
||||
:foreground "MidnightBlue")
|
||||
(t
|
||||
:bold t))
|
||||
:weight bold))
|
||||
"Face used for displaying Cc headers."
|
||||
:group 'message-faces)
|
||||
|
||||
|
|
@ -1547,21 +1547,21 @@ starting with `not' and followed by regexps."
|
|||
:foreground "OliveDrab1")
|
||||
(((class color)
|
||||
(background light))
|
||||
:foreground "navy blue" :bold t)
|
||||
:foreground "navy blue" :weight bold)
|
||||
(t
|
||||
:bold t))
|
||||
:weight bold))
|
||||
"Face used for displaying Subject headers."
|
||||
:group 'message-faces)
|
||||
|
||||
(defface message-header-newsgroups
|
||||
'((((class color)
|
||||
(background dark))
|
||||
:foreground "yellow" :bold t :italic t)
|
||||
:foreground "yellow" :weight bold :italic t)
|
||||
(((class color)
|
||||
(background light))
|
||||
:foreground "blue4" :bold t :italic t)
|
||||
:foreground "blue4" :weight bold :italic t)
|
||||
(t
|
||||
:bold t :italic t))
|
||||
:weight bold :italic t))
|
||||
"Face used for displaying Newsgroups headers."
|
||||
:group 'message-faces)
|
||||
|
||||
|
|
@ -1573,7 +1573,7 @@ starting with `not' and followed by regexps."
|
|||
(background light))
|
||||
:foreground "steel blue")
|
||||
(t
|
||||
:bold t :italic t))
|
||||
:weight bold :italic t))
|
||||
"Face used for displaying other headers."
|
||||
:group 'message-faces)
|
||||
|
||||
|
|
@ -1585,7 +1585,7 @@ starting with `not' and followed by regexps."
|
|||
(background light))
|
||||
:foreground "cornflower blue")
|
||||
(t
|
||||
:bold t))
|
||||
:weight bold))
|
||||
"Face used for displaying header names."
|
||||
:group 'message-faces)
|
||||
|
||||
|
|
@ -1597,7 +1597,7 @@ starting with `not' and followed by regexps."
|
|||
(background light))
|
||||
:foreground "blue")
|
||||
(t
|
||||
:bold t))
|
||||
:weight bold))
|
||||
"Face used for displaying X-Header headers."
|
||||
:group 'message-faces)
|
||||
|
||||
|
|
@ -1609,7 +1609,7 @@ starting with `not' and followed by regexps."
|
|||
(background light))
|
||||
:foreground "brown")
|
||||
(t
|
||||
:bold t))
|
||||
:weight bold))
|
||||
"Face used for displaying the separator."
|
||||
:group 'message-faces)
|
||||
|
||||
|
|
@ -1621,7 +1621,7 @@ starting with `not' and followed by regexps."
|
|||
(background light))
|
||||
(:foreground "red1"))
|
||||
(t
|
||||
(:bold t)))
|
||||
(:weight bold)))
|
||||
"Face used for displaying 1st-level cited text."
|
||||
:group 'message-faces)
|
||||
|
||||
|
|
@ -1633,7 +1633,7 @@ starting with `not' and followed by regexps."
|
|||
(background light))
|
||||
(:foreground "red4"))
|
||||
(t
|
||||
(:bold t)))
|
||||
(:weight bold)))
|
||||
"Face used for displaying 2nd-level cited text."
|
||||
:group 'message-faces)
|
||||
|
||||
|
|
@ -1645,7 +1645,7 @@ starting with `not' and followed by regexps."
|
|||
(background light))
|
||||
(:foreground "OliveDrab4"))
|
||||
(t
|
||||
(:bold t)))
|
||||
(:weight bold)))
|
||||
"Face used for displaying 3rd-level cited text."
|
||||
:group 'message-faces)
|
||||
|
||||
|
|
@ -1657,7 +1657,7 @@ starting with `not' and followed by regexps."
|
|||
(background light))
|
||||
(:foreground "SteelBlue4"))
|
||||
(t
|
||||
(:bold t)))
|
||||
(:weight bold)))
|
||||
"Face used for displaying 4th-level cited text."
|
||||
:group 'message-faces)
|
||||
|
||||
|
|
@ -1673,11 +1673,11 @@ starting with `not' and followed by regexps."
|
|||
(background light))
|
||||
:foreground "ForestGreen")
|
||||
(t
|
||||
:bold t))
|
||||
:weight bold))
|
||||
"Face used for displaying MML."
|
||||
:group 'message-faces)
|
||||
|
||||
(defface message-signature-separator '((t :bold t))
|
||||
(defface message-signature-separator '((t :weight bold))
|
||||
"Face used for displaying the signature separator."
|
||||
:group 'message-faces
|
||||
:version "28.1")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue