Skip to content

Commit

Permalink
Prefer defface's ':slant italic' to obsolete alias ':italic t'
Browse files Browse the repository at this point in the history
Merge from GNU trunk commit 64d314e0f6495de6fcf4f4c51e710b597a237e4f
  • Loading branch information
skangas authored and wsnyder committed Jan 26, 2025
1 parent 5f86652 commit 5070256
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions verilog-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -3269,15 +3269,15 @@ See also `verilog-font-lock-extra-types'.")
(defface verilog-font-lock-translate-off-face
'((((class color)
(background light))
(:background "gray90" :italic t ))
(:background "gray90" :slant italic ))
(((class color)
(background dark))
(:background "gray10" :italic t ))
(:background "gray10" :slant italic ))
(((class grayscale) (background light))
(:foreground "DimGray" :italic t))
(:foreground "DimGray" :slant italic))
(((class grayscale) (background dark))
(:foreground "LightGray" :italic t))
(t (:italic t)))
(:foreground "LightGray" :slant italic))
(t (:slant italic)))
"Font lock mode face used to background highlight translate-off regions."
:group 'font-lock-highlighting-faces)

Expand All @@ -3287,11 +3287,11 @@ See also `verilog-font-lock-extra-types'.")
(defface verilog-font-lock-p1800-face
'((((class color)
(background light))
(:foreground "DarkOrange3" :bold t ))
(:foreground "DarkOrange3" :weight bold ))
(((class color)
(background dark))
(:foreground "orange1" :bold t ))
(t (:italic t)))
(:foreground "orange1" :weight bold ))
(t (:slant italic)))
"Font lock mode face used to highlight P1800 keywords."
:group 'font-lock-highlighting-faces)
(make-obsolete-variable 'verilog-font-lock-p1800-face nil "27.1")
Expand All @@ -3302,11 +3302,11 @@ See also `verilog-font-lock-extra-types'.")
(defface verilog-font-lock-ams-face
'((((class color)
(background light))
(:foreground "Purple" :bold t ))
(:foreground "Purple" :weight bold ))
(((class color)
(background dark))
(:foreground "orange1" :bold t ))
(t (:italic t)))
(:foreground "orange1" :weight bold ))
(t (:slant italic)))
"Font lock mode face used to highlight AMS keywords."
:group 'font-lock-highlighting-faces)

Expand All @@ -3316,11 +3316,11 @@ See also `verilog-font-lock-extra-types'.")
(defface verilog-font-lock-grouping-keywords-face
'((((class color)
(background light))
(:foreground "Purple" :bold t ))
(:foreground "Purple" :weight bold ))
(((class color)
(background dark))
(:foreground "orange1" :bold t ))
(t (:italic t)))
(:foreground "orange1" :weight bold ))
(t (:slant italic)))
"Font lock mode face used to highlight verilog grouping keywords."
:group 'font-lock-highlighting-faces)

Expand Down

0 comments on commit 5070256

Please sign in to comment.