Skip to content

Commit 5070256

Browse files
skangaswsnyder
authored andcommitted
Prefer defface's ':slant italic' to obsolete alias ':italic t'
Merge from GNU trunk commit 64d314e0f6495de6fcf4f4c51e710b597a237e4f
1 parent 5f86652 commit 5070256

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

verilog-mode.el

+14-14
Original file line numberDiff line numberDiff line change
@@ -3269,15 +3269,15 @@ See also `verilog-font-lock-extra-types'.")
32693269
(defface verilog-font-lock-translate-off-face
32703270
'((((class color)
32713271
(background light))
3272-
(:background "gray90" :italic t ))
3272+
(:background "gray90" :slant italic ))
32733273
(((class color)
32743274
(background dark))
3275-
(:background "gray10" :italic t ))
3275+
(:background "gray10" :slant italic ))
32763276
(((class grayscale) (background light))
3277-
(:foreground "DimGray" :italic t))
3277+
(:foreground "DimGray" :slant italic))
32783278
(((class grayscale) (background dark))
3279-
(:foreground "LightGray" :italic t))
3280-
(t (:italic t)))
3279+
(:foreground "LightGray" :slant italic))
3280+
(t (:slant italic)))
32813281
"Font lock mode face used to background highlight translate-off regions."
32823282
:group 'font-lock-highlighting-faces)
32833283

@@ -3287,11 +3287,11 @@ See also `verilog-font-lock-extra-types'.")
32873287
(defface verilog-font-lock-p1800-face
32883288
'((((class color)
32893289
(background light))
3290-
(:foreground "DarkOrange3" :bold t ))
3290+
(:foreground "DarkOrange3" :weight bold ))
32913291
(((class color)
32923292
(background dark))
3293-
(:foreground "orange1" :bold t ))
3294-
(t (:italic t)))
3293+
(:foreground "orange1" :weight bold ))
3294+
(t (:slant italic)))
32953295
"Font lock mode face used to highlight P1800 keywords."
32963296
:group 'font-lock-highlighting-faces)
32973297
(make-obsolete-variable 'verilog-font-lock-p1800-face nil "27.1")
@@ -3302,11 +3302,11 @@ See also `verilog-font-lock-extra-types'.")
33023302
(defface verilog-font-lock-ams-face
33033303
'((((class color)
33043304
(background light))
3305-
(:foreground "Purple" :bold t ))
3305+
(:foreground "Purple" :weight bold ))
33063306
(((class color)
33073307
(background dark))
3308-
(:foreground "orange1" :bold t ))
3309-
(t (:italic t)))
3308+
(:foreground "orange1" :weight bold ))
3309+
(t (:slant italic)))
33103310
"Font lock mode face used to highlight AMS keywords."
33113311
:group 'font-lock-highlighting-faces)
33123312

@@ -3316,11 +3316,11 @@ See also `verilog-font-lock-extra-types'.")
33163316
(defface verilog-font-lock-grouping-keywords-face
33173317
'((((class color)
33183318
(background light))
3319-
(:foreground "Purple" :bold t ))
3319+
(:foreground "Purple" :weight bold ))
33203320
(((class color)
33213321
(background dark))
3322-
(:foreground "orange1" :bold t ))
3323-
(t (:italic t)))
3322+
(:foreground "orange1" :weight bold ))
3323+
(t (:slant italic)))
33243324
"Font lock mode face used to highlight verilog grouping keywords."
33253325
:group 'font-lock-highlighting-faces)
33263326

0 commit comments

Comments
 (0)