summaryrefslogtreecommitdiff
path: root/lisp/color.el
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2020-09-23 13:35:55 +0200
committerStefan Kangas <stefan@marxist.se>2020-10-02 13:29:45 +0200
commit78eacf31e8fe182801ad1943fac717b75fcf286b (patch)
tree38da2670157302d3663dbee6f1a708dea50a925b /lisp/color.el
parentd5d12707d639261a10726fcca992ba9e538be671 (diff)
downloademacs-78eacf31e8fe182801ad1943fac717b75fcf286b.tar.gz
; Fix many typos in symbols in docs and comments
Diffstat (limited to 'lisp/color.el')
-rw-r--r--lisp/color.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/color.el b/lisp/color.el
index 560631ae66d..48f150de70c 100644
--- a/lisp/color.el
+++ b/lisp/color.el
@@ -50,7 +50,7 @@ numbers, (RED GREEN BLUE), each between 0.0 and 1.0 inclusive.
Optional argument 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."
- ;; `colors-values' maximum value is either 65535 or 65280 depending on the
+ ;; `color-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 (float (car (color-values "#ffffffffffff")))))
(mapcar (lambda (x) (/ x valmax)) (color-values color frame))))