summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-08-24 20:40:48 +0000
committerRichard M. Stallman <rms@gnu.org>1997-08-24 20:40:48 +0000
commit6ffe1310ed32c5e9541a148c59e0c111d57cbf0b (patch)
tree7c660aa648c5c1dabb65799fef2262d710c960fa
parent2e9c16815b84c1767181654fbb0454190686eeba (diff)
downloademacs-6ffe1310ed32c5e9541a148c59e0c111d57cbf0b.tar.gz
(modify-face): Fix previous change.
-rw-r--r--lisp/faces.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/faces.el b/lisp/faces.el
index e91f7844953..9491b333da9 100644
--- a/lisp/faces.el
+++ b/lisp/faces.el
@@ -357,7 +357,7 @@ If called interactively, prompts for a face name and face attributes."
;; Clear this before we install the new foreground and background;
;; otherwise, clearing it after would swap them!
(when (and (or foreground background) (face-inverse-video-p face))
- (set-face-inverse-video-p face frame nil)
+ (set-face-inverse-video-p face nil frame)
;; Arrange to restore it after, if we are not setting it now.
(or (memq inverse-p '(t nil))
(setq inverse-p t)))