[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
master a0957595fe8 1/3: Stop using :reverse-video in make-mode
From: |
Mattias Engdegård |
Subject: |
master a0957595fe8 1/3: Stop using :reverse-video in make-mode |
Date: |
Sun, 29 Sep 2024 12:15:16 -0400 (EDT) |
branch: master
commit a0957595fe8ee298ab066a4ca553aa44de5fa059
Author: Mattias Engdegård <mattiase@acm.org>
Commit: Mattias Engdegård <mattiase@acm.org>
Stop using :reverse-video in make-mode
* lisp/progmodes/make-mode.el (makefile-space, makefile-makepp-perl):
Stop using a long obsolete attribute keyword.
---
lisp/progmodes/make-mode.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lisp/progmodes/make-mode.el b/lisp/progmodes/make-mode.el
index 87ebe81ca4c..60b87142850 100644
--- a/lisp/progmodes/make-mode.el
+++ b/lisp/progmodes/make-mode.el
@@ -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")