summaryrefslogtreecommitdiff
path: root/lisp/cus-face.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2007-12-30 03:35:05 +0000
committerRichard M. Stallman <rms@gnu.org>2007-12-30 03:35:05 +0000
commitaf4bbb690bbee58151f4f6122174fc036228155c (patch)
tree27a40f770633b08af116f832f693357ba59ae918 /lisp/cus-face.el
parent12c29dba8b90981a21b6414a433c4d82090a4cc0 (diff)
downloademacs-af4bbb690bbee58151f4f6122174fc036228155c.tar.gz
(custom-declare-face): Per frame, use `face-spec-set-2'.
(custom-theme-set-faces): Clear `face-override-spec' property. Call `face-spec-set' with FOR-DEFFACE.
Diffstat (limited to 'lisp/cus-face.el')
-rw-r--r--lisp/cus-face.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/cus-face.el b/lisp/cus-face.el
index 92274dcbe21..dfc5babec84 100644
--- a/lisp/cus-face.el
+++ b/lisp/cus-face.el
@@ -46,7 +46,7 @@
(make-empty-face face)
;; Create frame-local faces
(dolist (frame (frame-list))
- (face-spec-set face value frame)
+ (face-spec-set-2 face frame value)
(when (memq (window-system frame) '(x w32 mac))
(setq have-window-system t)))
;; When making a face after frames already exist
@@ -342,7 +342,8 @@ FACE's list property `theme-face' \(using `custom-push-theme')."
(unless (facep face)
(make-empty-face face))
(put face 'face-comment comment)
- (face-spec-set face spec nil))
+ (put face 'face-override-spec nil)
+ (face-spec-set face spec t))
(setq args (cdr args)))
;; Old format, a plist of FACE SPEC pairs.
(let ((face (nth 0 args))