1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-25 07:28:20 +00:00

* lisp/custom.el (custom-fix-face-spec): Fix :reverse-video case

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).
This commit is contained in:
Mattias Engdegård 2024-09-29 16:57:07 +02:00
parent a0957595fe
commit 8e3205a0c8

View File

@ -977,7 +977,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))