aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xfaces.c8
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
1254DEFUN ("face-color-gray-p", Fface_color_gray_p, Sface_color_gray_p, 1, 2, 0, 1254DEFUN ("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\
1256FRAME specifies the frame and thus the display for interpreting COLOR.\n\ 1256FRAME specifies the frame and thus the display for interpreting COLOR.\n\
1257If FRAME is nil or omitted, use the selected frame.") 1257If 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
1270DEFUN ("face-color-supported-p", Fface_color_supported_p, 1270DEFUN ("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\
1273BACKGROUND-P non-nil means COLOR is used as a background.\n\ 1273BACKGROUND-P non-nil means COLOR is used as a background.\n\
1274If FRAME is nil or omitted, use the selected frame.\n\ 1274If FRAME is nil or omitted, use the selected frame.\n\
1275COLOR must be a valid color name.") 1275COLOR 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;