color: make color-name-to-rgb work on all display system
authorJulien Danjou <julien@danjou.info>
Thu, 19 Jan 2012 12:50:00 +0000 (13:50 +0100)
committerJulien Danjou <julien@danjou.info>
Thu, 19 Jan 2012 12:50:00 +0000 (13:50 +0100)
Signed-off-by: Julien Danjou <julien@danjou.info>
lisp/ChangeLog
lisp/color.el

index e284cb8..d1a7da4 100644 (file)
@@ -1,3 +1,8 @@
+2012-01-19  Julien Danjou  <julien@danjou.info>
+
+       * color.el (color-name-to-rgb): Use the white color to find the max
+       color component value and return correctly computed values.
+
 2012-01-10  Teodor Zlatanov  <tzz@lifelogs.com>
 
        * nntp.el (nntp-send-authinfo): Query `auth-source-search' with the
index ff7f0ee..3112e0d 100644 (file)
@@ -53,7 +53,10 @@ numbers, (RED GREEN BLUE), each between 0.0 and 1.0 inclusive.
 Optional arg FRAME specifies the frame where the color is to be
 displayed.  If FRAME is omitted or nil, use the selected frame.
 If FRAME cannot display COLOR, return nil."
-  (mapcar (lambda (x) (/ x 65535.0)) (color-values color frame)))
+  ;; `colors-values' maximum value is either 65535 or 65280 depending on the
+  ;; display system. So we use a white conversion to get the max value.
+  (let ((valmax (car (color-values "#ffffff"))))
+    (mapcar (lambda (x) (/ x valmax)) (color-values color frame))))
 
 (defun color-rgb-to-hex  (red green blue)
   "Return hexadecimal notation for the color RED GREEN BLUE.