commit 20f2fbe3ccf954a39542df103cf67aaa1dbbcbdc
parent 67c8e26e1c0f09c5c0905f7686615bac7c782606
Author: Naoya Yamashita <conao3@gmail.com>
Date: Tue, 3 Dec 2019 16:56:52 +0900
Use mapcar instead of --map (#379)
Diffstat:
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/solarized-faces.el b/solarized-faces.el
@@ -1989,8 +1989,9 @@
;;;;; highlight-symbol
`(highlight-symbol-foreground-color ,base1)
`(highlight-symbol-colors
- (--map (solarized-color-blend it ,base03 0.25)
- '(,yellow ,cyan ,red ,violet ,green ,orange ,blue)))
+ ,(mapcar
+ (lambda (color) (solarized-color-blend color ,base03 0.25))
+ `(,yellow ,cyan ,red ,violet ,green ,orange ,blue)))
;;;;; highlight-tail
`(highlight-tail-colors
'((,base02 . 0)(,green-lc . 20)(,cyan-lc . 30)(,blue-lc . 50)