diff options
Diffstat (limited to 'lisp/faces.el')
-rw-r--r-- | lisp/faces.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/faces.el b/lisp/faces.el index 7b521d385b1..53e3b004533 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -248,8 +248,8 @@ If FRAME is t, report on the defaults for face FACE (for new frames). If FRAME is omitted or nil, use the selected frame." (let ((attrs '(:family :width :height :weight :slant :foreground - :foreground :background :underline :overline - :strike-through :box :inverse-video)) + :background :underline :overline :strike-through + :box :inverse-video)) (differs nil)) (while (and attrs (not differs)) (let* ((attr (pop attrs)) @@ -1541,7 +1541,7 @@ If COLOR is the symbol `unspecified' or one of the strings (defun color-values (color &optional frame) "Return a description of the color named COLOR on frame FRAME. The value is a list of integer RGB values--\(RED GREEN BLUE\). -These values appear to range from 0 65535; white is \(65535 65535 65535\). +These values range from 0 to 65535; white is \(65535 65535 65535\). If FRAME is omitted or nil, use the selected frame. If FRAME cannot display COLOR, the value is nil. If COLOR is the symbol `unspecified' or one of the strings |