diff options
author | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 2005-10-21 08:26:37 +0000 |
---|---|---|
committer | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 2005-10-21 08:26:37 +0000 |
commit | 1505621c908eeaa166a7b4a19d0053a17c7f5d73 (patch) | |
tree | e664a4257391b631142fc34c34fcf85c70d46636 /lisp/cus-face.el | |
parent | b71cef5c989dfe33f71afec7f183821e797e33df (diff) | |
download | emacs-1505621c908eeaa166a7b4a19d0053a17c7f5d73.tar.gz |
(custom-declare-face): Make face from X resources also on Mac.
Diffstat (limited to 'lisp/cus-face.el')
-rw-r--r-- | lisp/cus-face.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/cus-face.el b/lisp/cus-face.el index cd052732b65..8a6e77f9805 100644 --- a/lisp/cus-face.el +++ b/lisp/cus-face.el @@ -47,7 +47,7 @@ (dolist (frame (frame-list)) (face-spec-set face value frame))) ;; When making a face after frames already exist - (if (memq window-system '(x w32)) + (if (memq window-system '(x w32 mac)) (make-face-x-resource-internal face)))) ;; Don't record SPEC until we see it causes no errors. (put face 'face-defface-spec spec) |