]> git.eshelyaron.com Git - emacs.git/commitdiff
(set-face-background, set-face-foreground): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Sat, 1 Jan 2005 14:21:37 +0000 (14:21 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 1 Jan 2005 14:21:37 +0000 (14:21 +0000)
lisp/faces.el

index 86fda8506d49f6188bdf135f7f2580e85c417675..a234c9023328e224b7afa0de16ada24464a791ae 100644 (file)
@@ -730,7 +730,9 @@ and `:slant'.  When called interactively, prompt for the face and font."
 (defun set-face-background (face color &optional frame)
   "Change the background color of face FACE to COLOR (a string).
 FRAME nil or not specified means change face on all frames.
-When called interactively, prompt for the face and color."
+COLOR can be a system-defined color name (see `list-colors-display')
+or a hex spec of the form #RRGGBB.
+When called interactively, prompts for the face and color."
   (interactive (read-face-and-attribute :background))
   (set-face-attribute face frame :background (or color 'unspecified)))
 
@@ -738,7 +740,9 @@ When called interactively, prompt for the face and color."
 (defun set-face-foreground (face color &optional frame)
   "Change the foreground color of face FACE to COLOR (a string).
 FRAME nil or not specified means change face on all frames.
-When called interactively, prompt for the face and color."
+COLOR can be a system-defined color name (see `list-colors-display')
+or a hex spec of the form #RRGGBB.
+When called interactively, prompts for the face and color."
   (interactive (read-face-and-attribute :foreground))
   (set-face-attribute face frame :foreground (or color 'unspecified)))