aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/cus-face.el3
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 31f5ff2f76a..b1e2ba0f8ed 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12007-09-07 Johan Bockg,Ae(Brd <bojohan@gnu.org>
2
3 * cus-face.el (custom-theme-set-faces): Set face attributes
4 locally for each frame.
5
12007-09-07 Stefan Monnier <monnier@iro.umontreal.ca> 62007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
2 7
3 * progmodes/fortran.el (fortran-mode): Set font-lock-syntactic-keywords 8 * progmodes/fortran.el (fortran-mode): Set font-lock-syntactic-keywords
diff --git a/lisp/cus-face.el b/lisp/cus-face.el
index 900a815b160..09cf058dc64 100644
--- a/lisp/cus-face.el
+++ b/lisp/cus-face.el
@@ -342,7 +342,8 @@ FACE's list property `theme-face' \(using `custom-push-theme')."
342 (unless (facep face) 342 (unless (facep face)
343 (make-empty-face face)) 343 (make-empty-face face))
344 (put face 'face-comment comment) 344 (put face 'face-comment comment)
345 (face-spec-set face spec)) 345 (dolist (frame (frame-list))
346 (face-spec-set face spec frame)))
346 (setq args (cdr args))) 347 (setq args (cdr args)))
347 ;; Old format, a plist of FACE SPEC pairs. 348 ;; Old format, a plist of FACE SPEC pairs.
348 (let ((face (nth 0 args)) 349 (let ((face (nth 0 args))