# HG changeset patch # User Katsumi Yamaoka # Date 1290671211 0 # Node ID 4483c6423ad114328ee547021ccf7b8d19d60029 # Parent 13061011e6ac3cf9dc60b65cf82a164ac17c672a shr-color.el (shr-color-visible): Don't bug out if the colour names don't exist. diff -r 13061011e6ac -r 4483c6423ad1 lisp/gnus/ChangeLog --- a/lisp/gnus/ChangeLog Thu Nov 25 05:09:25 2010 +0000 +++ b/lisp/gnus/ChangeLog Thu Nov 25 07:46:51 2010 +0000 @@ -1,3 +1,8 @@ +2010-11-25 Lars Magne Ingebrigtsen + + * shr-color.el (shr-color-visible): Don't bug out if the colour names + don't exist. + 2010-11-25 Katsumi Yamaoka * mml.el (mml-preview): Make sure to bind gnus-displaying-mime to nil, diff -r 13061011e6ac -r 4483c6423ad1 lisp/gnus/shr-color.el --- a/lisp/gnus/shr-color.el Thu Nov 25 05:09:25 2010 +0000 +++ b/lisp/gnus/shr-color.el Thu Nov 25 07:46:51 2010 +0000 @@ -324,29 +324,36 @@ new background color will not be computed. Only the foreground color will be adapted to be visible on BG." ;; Convert fg and bg to CIE Lab - (let* ((fg-lab (apply 'rgb->lab (rgb->normalize fg))) - (bg-lab (apply 'rgb->lab (rgb->normalize bg))) - ;; Compute color distance using CIE DE 2000 - (fg-bg-distance (color-lab-ciede2000 fg-lab bg-lab)) - ;; Compute luminance distance (substract L component) - (luminance-distance (abs (- (car fg-lab) (car bg-lab))))) - (if (and (>= fg-bg-distance shr-color-visible-distance-min) - (>= luminance-distance shr-color-visible-luminance-min)) - (list bg fg) - ;; Not visible, try to change luminance to make them visible - (let ((Ls (set-minimum-interval (car bg-lab) (car fg-lab) 0 100 - shr-color-visible-luminance-min - fixed-background))) - (unless fixed-background - (setcar bg-lab (car Ls))) - (setcar fg-lab (cadr Ls)) - (list - (if fixed-background - bg - (apply 'format "#%02x%02x%02x" - (mapcar (lambda (x) (* (max (min 1 x) 0) 255)) (apply 'lab->rgb bg-lab)))) - (apply 'format "#%02x%02x%02x" - (mapcar (lambda (x) (* (max (min 1 x) 0) 255)) (apply 'lab->rgb fg-lab)))))))) + (let ((fg-norm (rgb->normalize fg)) + (bg-norm (rgb->normalize bg))) + (if (or (null fg-norm) + (null bg-norm)) + (list bg fg) + (let* ((fg-lab (apply 'rgb->lab fg-norm)) + (bg-lab (apply 'rgb->lab bg-norm)) + ;; Compute color distance using CIE DE 2000 + (fg-bg-distance (color-lab-ciede2000 fg-lab bg-lab)) + ;; Compute luminance distance (substract L component) + (luminance-distance (abs (- (car fg-lab) (car bg-lab))))) + (if (and (>= fg-bg-distance shr-color-visible-distance-min) + (>= luminance-distance shr-color-visible-luminance-min)) + (list bg fg) + ;; Not visible, try to change luminance to make them visible + (let ((Ls (set-minimum-interval (car bg-lab) (car fg-lab) 0 100 + shr-color-visible-luminance-min + fixed-background))) + (unless fixed-background + (setcar bg-lab (car Ls))) + (setcar fg-lab (cadr Ls)) + (list + (if fixed-background + bg + (apply 'format "#%02x%02x%02x" + (mapcar (lambda (x) (* (max (min 1 x) 0) 255)) + (apply 'lab->rgb bg-lab)))) + (apply 'format "#%02x%02x%02x" + (mapcar (lambda (x) (* (max (min 1 x) 0) 255)) + (apply 'lab->rgb fg-lab)))))))))) (provide 'shr-color)