diff options
author | Karoly Lorentey <lorentey@elte.hu> | 2005-12-03 14:25:50 +0000 |
---|---|---|
committer | Karoly Lorentey <lorentey@elte.hu> | 2005-12-03 14:25:50 +0000 |
commit | 9ef706664e98e37e9633712126bae99869904677 (patch) | |
tree | 193bce7424700e4c7d70f54b04f7f81d64525554 /lisp/cus-face.el | |
parent | 950bed4bb96d2a580818bdaab64a164c7c9a1c1e (diff) | |
parent | 9f6efa0c78099f2f028c4db1db5a58567a1cfb4e (diff) | |
download | emacs-9ef706664e98e37e9633712126bae99869904677.tar.gz |
Merged from miles@gnu.org--gnu-2005 (patch 659-663)
Patches applied:
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-659
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-660
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-661
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-662
Update from CVS
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-663
Update from CVS
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-445
Diffstat (limited to 'lisp/cus-face.el')
-rw-r--r-- | lisp/cus-face.el | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/lisp/cus-face.el b/lisp/cus-face.el index 449efa5fe66..3e4e32ecc97 100644 --- a/lisp/cus-face.el +++ b/lisp/cus-face.el @@ -323,13 +323,18 @@ FACE's list property `theme-face' \(using `custom-push-theme')." (let ((face (nth 0 entry)) (spec (nth 1 entry)) (now (nth 2 entry)) - (comment (nth 3 entry))) + (comment (nth 3 entry)) + oldspec) ;; If FACE is actually an alias, customize the face it ;; is aliased to. (if (get face 'face-alias) (setq face (get face 'face-alias))) - (put face 'saved-face spec) - (put face 'saved-face-comment comment) + + (setq oldspec (get face 'theme-face)) + (when (not (and oldspec (eq 'user (caar oldspec)))) + (put face 'saved-face spec) + (put face 'saved-face-comment comment)) + (custom-push-theme 'theme-face face theme 'set spec) (when (or now immediate) (put face 'force-face (if now 'rogue 'immediate))) |