]> git.eshelyaron.com Git - emacs.git/commitdiff
Stop using :reverse-video in make-mode
authorMattias EngdegÄrd <mattiase@acm.org>
Sun, 29 Sep 2024 14:59:20 +0000 (16:59 +0200)
committerEshel Yaron <me@eshelyaron.com>
Mon, 30 Sep 2024 19:41:29 +0000 (21:41 +0200)
* lisp/progmodes/make-mode.el (makefile-space, makefile-makepp-perl):
Stop using a long obsolete attribute keyword.

(cherry picked from commit a0957595fe8ee298ab066a4ca553aa44de5fa059)

lisp/progmodes/make-mode.el

index 87ebe81ca4cd57108282db8e07ac95ae0165c35b..60b87142850e039600037f57c2312210ad72d473 100644 (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
 (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")