solarized-emacs

a fork of Bozhidar Batsov's solarized-emacs
git clone https://git.trogloxene.org/solarized-emacs.git
Log | Files | Refs | README

commit 155f0cf7885789330e17b577c5c99fc24ca5e5ae
parent 232a22432fc7bd47fe2d374fa40a0dddd324096e
Author: Jonas Bernoulli <jonas@bernoul.li>
Date:   Mon, 14 Sep 2015 18:34:24 +0200

Use cl-lib instead of cl

Diffstat:
Msolarized-theme-pkg.el | 2+-
Msolarized-theme-utils.el | 10+++++-----
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)