]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/custom.el (custom-fix-face-spec): Fix :reverse-video case
authorMattias EngdegÄrd <mattiase@acm.org>
Sun, 29 Sep 2024 14:57:07 +0000 (16:57 +0200)
committerEshel Yaron <me@eshelyaron.com>
Mon, 30 Sep 2024 19:41:49 +0000 (21:41 +0200)
The :reverse-video keyword is no longer used but we might just as well
fix the code that is supposed to migrate away from it (bug#73552).

(cherry picked from commit 8e3205a0c80a39f8e64209fd5905c541c92e46a6)

lisp/custom.el

index 8d28ba1b2ee4a6586961f4a2b689d98fc0eb102a..5820a0ffb1ef69910aa1937518f12742fd977230 100644 (file)
@@ -976,7 +976,7 @@ Also change :reverse-video to :inverse-video."
   (when (listp spec)
     (if (or (memq :bold spec)
            (memq :italic spec)
-           (memq :inverse-video spec))
+           (memq :reverse-video spec))
        (let (result)
          (while spec
            (let ((key (car spec))