From: Eli Zaretskii Date: Mon, 3 Jan 2000 11:51:33 +0000 (+0000) Subject: (Fcolor_gray_p): Renamed from face-color-gray-p. X-Git-Tag: emacs-pretest-21.0.90~5546 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=da47150ddc221d4e0462e92ed05d9b5055d6195d;p=emacs.git (Fcolor_gray_p): Renamed from face-color-gray-p. (Fcolor_supported_p): Renamed from face-color-supported-p. --- 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) } -DEFUN ("face-color-gray-p", Fface_color_gray_p, Sface_color_gray_p, 1, 2, 0, +DEFUN ("color-gray-p", Fcolor_gray_p, Scolor_gray_p, 1, 2, 0, "Return non-nil if COLOR is a shade of gray (or white or black).\n\ FRAME specifies the frame and thus the display for interpreting COLOR.\n\ If FRAME is nil or omitted, use the selected frame.") @@ -1267,13 +1267,13 @@ If FRAME is nil or omitted, use the selected frame.") } -DEFUN ("face-color-supported-p", Fface_color_supported_p, - Sface_color_supported_p, 2, 3, 0, +DEFUN ("color-supported-p", Fcolor_supported_p, + Scolor_supported_p, 2, 3, 0, "Return non-nil if COLOR can be displayed on FRAME.\n\ BACKGROUND-P non-nil means COLOR is used as a background.\n\ If FRAME is nil or omitted, use the selected frame.\n\ COLOR must be a valid color name.") - (frame, color, background_p) + (color, frame, background_p) Lisp_Object frame, color, background_p; { struct frame *f;