1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-22 07:09:54 +00:00

Stop using :reverse-video in make-mode

* lisp/progmodes/make-mode.el (makefile-space, makefile-makepp-perl):
Stop using a long obsolete attribute keyword.
This commit is contained in:
Mattias Engdegård 2024-09-29 16:59:20 +02:00
parent 8d0c8076c3
commit a0957595fe

View File

@ -83,7 +83,7 @@
(defface makefile-space
'((((class color)) (:background "hotpink"))
(t (:reverse-video t)))
(t (:inverse-video t)))
"Face to use for highlighting leading spaces in Font-Lock mode.")
(defface makefile-targets
@ -102,7 +102,7 @@
(defface makefile-makepp-perl
'((((class color) (background light)) (:background "LightBlue1")) ; Camel Book
(((class color) (background dark)) (:background "DarkBlue"))
(t (:reverse-video t)))
(t (:inverse-video t)))
"Face to use for additionally highlighting Perl code in Font-Lock mode."
:version "22.1")