From: Richard M. Stallman Date: Mon, 17 Sep 2007 02:55:37 +0000 (+0000) Subject: (custom-theme-set-faces): Undo previous change. X-Git-Tag: emacs-pretest-23.0.90~10863 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=578b4e9deeca92fa33d8e46c3e234b224169880d;p=emacs.git (custom-theme-set-faces): Undo previous change. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3d6075ce27f..340c8c796b1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2007-09-17 Richard Stallman + + * cus-face.el (custom-theme-set-faces): Undo previous change. + + * faces.el (face-spec-set): When FRAME nil, look up each frame in SPEC. + 2007-09-17 Glenn Morris * textmodes/tex-mode.el (tex-region): Simplify previous change, diff --git a/lisp/cus-face.el b/lisp/cus-face.el index 09cf058dc64..92274dcbe21 100644 --- a/lisp/cus-face.el +++ b/lisp/cus-face.el @@ -342,17 +342,16 @@ FACE's list property `theme-face' \(using `custom-push-theme')." (unless (facep face) (make-empty-face face)) (put face 'face-comment comment) - (dolist (frame (frame-list)) - (face-spec-set face spec frame))) - (setq args (cdr args))) - ;; Old format, a plist of FACE SPEC pairs. - (let ((face (nth 0 args)) - (spec (nth 1 args))) - (if (get face 'face-alias) - (setq face (get face 'face-alias))) - (put face 'saved-face spec) - (custom-push-theme 'theme-face face theme 'set spec)) - (setq args (cdr (cdr args)))))))) + (face-spec-set face spec nil)) + (setq args (cdr args))) + ;; Old format, a plist of FACE SPEC pairs. + (let ((face (nth 0 args)) + (spec (nth 1 args))) + (if (get face 'face-alias) + (setq face (get face 'face-alias))) + (put face 'saved-face spec) + (custom-push-theme 'theme-face face theme 'set spec)) + (setq args (cdr (cdr args)))))))) ;; XEmacs compability function. In XEmacs, when you reset a Custom ;; Theme, you have to specify the theme to reset it to. We just apply