diff options
| author | Eli Zaretskii | 2000-01-03 11:51:33 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2000-01-03 11:51:33 +0000 |
| commit | da47150ddc221d4e0462e92ed05d9b5055d6195d (patch) | |
| tree | 09cf86fe149c7f0964b97cd2cb124135469fabb0 | |
| parent | bb9d2b64478d7b52359cd61559621259414595dd (diff) | |
| download | emacs-da47150ddc221d4e0462e92ed05d9b5055d6195d.tar.gz emacs-da47150ddc221d4e0462e92ed05d9b5055d6195d.zip | |
(Fcolor_gray_p): Renamed from face-color-gray-p.
(Fcolor_supported_p): Renamed from face-color-supported-p.
| -rw-r--r-- | src/xfaces.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/xfaces.c b/src/xfaces.c index 4960de74ff3..601a69ee34b 100644 --- a/src/xfaces.c +++ b/src/xfaces.c | |||
| @@ -1251,7 +1251,7 @@ face_color_supported_p (f, color_name, background_p) | |||
| 1251 | } | 1251 | } |
| 1252 | 1252 | ||
| 1253 | 1253 | ||
| 1254 | DEFUN ("face-color-gray-p", Fface_color_gray_p, Sface_color_gray_p, 1, 2, 0, | 1254 | DEFUN ("color-gray-p", Fcolor_gray_p, Scolor_gray_p, 1, 2, 0, |
| 1255 | "Return non-nil if COLOR is a shade of gray (or white or black).\n\ | 1255 | "Return non-nil if COLOR is a shade of gray (or white or black).\n\ |
| 1256 | FRAME specifies the frame and thus the display for interpreting COLOR.\n\ | 1256 | FRAME specifies the frame and thus the display for interpreting COLOR.\n\ |
| 1257 | If FRAME is nil or omitted, use the selected frame.") | 1257 | If FRAME is nil or omitted, use the selected frame.") |
| @@ -1267,13 +1267,13 @@ If FRAME is nil or omitted, use the selected frame.") | |||
| 1267 | } | 1267 | } |
| 1268 | 1268 | ||
| 1269 | 1269 | ||
| 1270 | DEFUN ("face-color-supported-p", Fface_color_supported_p, | 1270 | DEFUN ("color-supported-p", Fcolor_supported_p, |
| 1271 | Sface_color_supported_p, 2, 3, 0, | 1271 | Scolor_supported_p, 2, 3, 0, |
| 1272 | "Return non-nil if COLOR can be displayed on FRAME.\n\ | 1272 | "Return non-nil if COLOR can be displayed on FRAME.\n\ |
| 1273 | BACKGROUND-P non-nil means COLOR is used as a background.\n\ | 1273 | BACKGROUND-P non-nil means COLOR is used as a background.\n\ |
| 1274 | If FRAME is nil or omitted, use the selected frame.\n\ | 1274 | If FRAME is nil or omitted, use the selected frame.\n\ |
| 1275 | COLOR must be a valid color name.") | 1275 | COLOR must be a valid color name.") |
| 1276 | (frame, color, background_p) | 1276 | (color, frame, background_p) |
| 1277 | Lisp_Object frame, color, background_p; | 1277 | Lisp_Object frame, color, background_p; |
| 1278 | { | 1278 | { |
| 1279 | struct frame *f; | 1279 | struct frame *f; |