aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/faces.el
diff options
context:
space:
mode:
authorMiles Bader2006-06-07 18:05:10 +0000
committerMiles Bader2006-06-07 18:05:10 +0000
commitb883cdb2fefa8ea9c3b0d82eba7a9ee792f871bb (patch)
treede3804210a8cd955e0d3b9abc15679480930bc82 /lisp/faces.el
parent885b7d0991bd4b4b8f4bd1d3cd21c18a697bbce2 (diff)
parent26c9afc3239e18b03537faaea33e3e82e28099e6 (diff)
downloademacs-b883cdb2fefa8ea9c3b0d82eba7a9ee792f871bb.tar.gz
emacs-b883cdb2fefa8ea9c3b0d82eba7a9ee792f871bb.zip
Merge from emacs--devo--0
Patches applied: * emacs--devo--0 (patch 285-296) - Update from CVS - Merge from gnus--rel--5.10 - Update from CVS: admin/FOR-RELEASE: Update refcard section. * gnus--rel--5.10 (patch 102-104) - Update from CVS Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-64
Diffstat (limited to 'lisp/faces.el')
-rw-r--r--lisp/faces.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/faces.el b/lisp/faces.el
index c4b86b5b402..828cbf860d9 100644
--- a/lisp/faces.el
+++ b/lisp/faces.el
@@ -1576,7 +1576,8 @@ If there is neither a user setting nor a default for FACE, return nil."
1576 "Return a list of colors supported for a particular frame. 1576 "Return a list of colors supported for a particular frame.
1577The argument FRAME specifies which frame to try. 1577The argument FRAME specifies which frame to try.
1578The value may be different for frames on different display types. 1578The value may be different for frames on different display types.
1579If FRAME doesn't support colors, the value is nil." 1579If FRAME doesn't support colors, the value is nil.
1580If FRAME is nil, that stands for the selected frame."
1580 (if (memq (framep (or frame (selected-frame))) '(x w32 mac)) 1581 (if (memq (framep (or frame (selected-frame))) '(x w32 mac))
1581 (xw-defined-colors frame) 1582 (xw-defined-colors frame)
1582 (mapcar 'car (tty-color-alist frame)))) 1583 (mapcar 'car (tty-color-alist frame))))