(defined-colors): Doc fix.

This commit is contained in:
Richard M. Stallman 2006-06-05 17:21:37 +00:00
parent 58ce5535fd
commit 43c58260f6
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2006-06-05 Richard Stallman <rms@gnu.org>
* faces.el (defined-colors): Doc fix.
2006-06-05 Thien-Thi Nguyen <ttn@gnu.org>
* vc.el (vc-process-filter): Inhibit undo

View file

@ -1517,7 +1517,8 @@ If there is neither a user setting nor a default for FACE, return nil."
"Return a list of colors supported for a particular frame.
The argument FRAME specifies which frame to try.
The value may be different for frames on different display types.
If FRAME doesn't support colors, the value is nil."
If FRAME doesn't support colors, the value is nil.
If FRAME is nil, that stands for the selected frame."
(if (memq (framep (or frame (selected-frame))) '(x w32 mac))
(xw-defined-colors frame)
(mapcar 'car (tty-color-alist frame))))