aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2007-02-14 15:31:09 +0000
committerJuanma Barranquero2007-02-14 15:31:09 +0000
commit22bbca614f492025bb9c57ec7250447bc69c33c2 (patch)
tree6e663cc28944153422b6adf6c5244de3ecb2e490
parentce6fb7e6233a80829b7866e0130ac06e6cfe1912 (diff)
downloademacs-22bbca614f492025bb9c57ec7250447bc69c33c2.tar.gz
emacs-22bbca614f492025bb9c57ec7250447bc69c33c2.zip
(color-values): Revert changes to docstring from 2007-01-31 and 2000-09-07.
-rw-r--r--lisp/faces.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/faces.el b/lisp/faces.el
index 749754ffb08..54388fd54ca 100644
--- a/lisp/faces.el
+++ b/lisp/faces.el
@@ -1536,8 +1536,9 @@ If COLOR is the symbol `unspecified' or one of the strings
1536 1536
1537(defun color-values (color &optional frame) 1537(defun color-values (color &optional frame)
1538 "Return a description of the color named COLOR on frame FRAME. 1538 "Return a description of the color named COLOR on frame FRAME.
1539The value is a list of integer RGB values--\(RED GREEN BLUE\). 1539The value is a list of integer RGB values--(RED GREEN BLUE).
1540These values range from 0 to 65535; white is \(65535 65535 65535\). 1540These values appear to range from 0 to 65280 or 65535, depending
1541on the system; white is \(65280 65280 65280\) or \(65535 65535 65535\).
1541If FRAME is omitted or nil, use the selected frame. 1542If FRAME is omitted or nil, use the selected frame.
1542If FRAME cannot display COLOR, the value is nil. 1543If FRAME cannot display COLOR, the value is nil.
1543If COLOR is the symbol `unspecified' or one of the strings 1544If COLOR is the symbol `unspecified' or one of the strings