diff options
| author | Luc Teirlinck | 2004-07-24 20:56:59 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2004-07-24 20:56:59 +0000 |
| commit | fc820cc5400e444db02b891dca8e728e692fef4d (patch) | |
| tree | bcc6d6032cb633072aca943d21c9062832e58560 | |
| parent | e4ed805e9d3b9f2019cb9376682bb53dafaf81fb (diff) | |
| download | emacs-fc820cc5400e444db02b891dca8e728e692fef4d.tar.gz emacs-fc820cc5400e444db02b891dca8e728e692fef4d.zip | |
(Fcolor_supported_p): Doc fix.
| -rw-r--r-- | src/ChangeLog | 7 | ||||
| -rw-r--r-- | src/xfaces.c | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 8d9d72de9d2..d10452c7fa5 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2004-07-24 Luc Teirlinck <teirllm@auburn.edu> | ||
| 2 | |||
| 3 | * xfaces.c (Fcolor_supported_p): Doc fix. | ||
| 4 | |||
| 5 | * frame.c (Fselect_frame, Fset_frame_selected_window) | ||
| 6 | (Fframe_visible_p, Fraise_frame): Doc fixes. | ||
| 7 | |||
| 1 | 2004-07-24 Richard M. Stallman <rms@gnu.org> | 8 | 2004-07-24 Richard M. Stallman <rms@gnu.org> |
| 2 | 9 | ||
| 3 | * xfns.c (x_icon_verify): New function. | 10 | * xfns.c (x_icon_verify): New function. |
diff --git a/src/xfaces.c b/src/xfaces.c index 7f5012f3e0a..f78ecacee1a 100644 --- a/src/xfaces.c +++ b/src/xfaces.c | |||
| @@ -1544,6 +1544,7 @@ DEFUN ("color-supported-p", Fcolor_supported_p, | |||
| 1544 | Scolor_supported_p, 1, 3, 0, | 1544 | Scolor_supported_p, 1, 3, 0, |
| 1545 | doc: /* Return non-nil if COLOR can be displayed on FRAME. | 1545 | doc: /* Return non-nil if COLOR can be displayed on FRAME. |
| 1546 | BACKGROUND-P non-nil means COLOR is used as a background. | 1546 | BACKGROUND-P non-nil means COLOR is used as a background. |
| 1547 | Otherwise, this function tells whether it can be used as a foreground. | ||
| 1547 | If FRAME is nil or omitted, use the selected frame. | 1548 | If FRAME is nil or omitted, use the selected frame. |
| 1548 | COLOR must be a valid color name. */) | 1549 | COLOR must be a valid color name. */) |
| 1549 | (color, frame, background_p) | 1550 | (color, frame, background_p) |