commit 3b82690631072db06d016f4889ec0fbf5dcb6f4e
parent 22460d497d0f1fb5221d6b13868b7f2278942625
Author: Thomas Frössman <thomasf@jossystem.se>
Date: Wed, 16 Sep 2015 14:04:34 +0200
Merge pull request #205 from tarsius/cl-lib
Use cl-lib instead of cl
Diffstat:
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/solarized-theme-pkg.el b/solarized-theme-pkg.el
@@ -2,4 +2,4 @@
"solarized-theme"
"1.2.2"
"The Solarized color theme, ported to Emacs."
- '((dash "2.6.0")))
+ '((cl-lib "0.5") (dash "2.6.0")))
diff --git a/solarized-theme-utils.el b/solarized-theme-utils.el
@@ -24,7 +24,7 @@
;;
;;;; Code:
-(require 'cl)
+(require 'cl-lib)
(require 'solarized)
(defun solarized-import-faces (&optional regexp already-defined)
@@ -54,10 +54,10 @@ in the format of solarized-theme.el."
(setq result
(nconc (list attribute
(cond
- ((member* attribute
- '(":background"
- ":foreground")
- :test 'string=)
+ ((cl-member attribute
+ '(":background"
+ ":foreground")
+ :test 'string=)
(format "\"%s\"" value))
(t value))) result))))))
(if (get face 'theme-face)