* color.el (color-lab->srgb): Fix function call name.
authorLars Magne Ingebrigtsen <larsi@quimbies.gnus.org>
Sat, 27 Nov 2010 16:08:29 +0000 (17:08 +0100)
committerLars Magne Ingebrigtsen <larsi@quimbies.gnus.org>
Sat, 27 Nov 2010 16:08:29 +0000 (17:08 +0100)
lisp/ChangeLog
lisp/color.el

index ed88190..a6e9b86 100644 (file)
@@ -1,5 +1,7 @@
 2010-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
+       * color.el (color-lab->srgb): Fix function call name.
+
        * proto-stream.el (proto-stream-open-tls): Delete output from openssl
        if we're using tls.el.
        (proto-stream-open-network): If we don't have gnutls-cli or gnutls
index 4d3718b..d22a71f 100644 (file)
@@ -196,7 +196,7 @@ none is set, `color-d65-xyz' is used."
 
 (defun color-lab->srgb (L a b)
   "Converts CIE L*a*b* to RGB."
-  (apply 'color-xyz->rgb (color-lab->xyz L a b)))
+  (apply 'color-xyz->srgb (color-lab->xyz L a b)))
 
 (defun color-cie-de2000 (color1 color2 &optional kL kC kH)
   "Computes the CIEDE2000 color distance between COLOR1 and COLOR2.