From 3091c93ca34f1387290e0338e388a0c8adfe334e Mon Sep 17 00:00:00 2001 From: Jonathan Schuster Date: Fri, 10 Apr 2015 15:25:14 -0400 Subject: [PATCH] Replace cl-copy-list with copy-sequence --- solarized-definitions.el | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/solarized-definitions.el b/solarized-definitions.el index 840d9c0..693a621 100644 --- a/solarized-definitions.el +++ b/solarized-definitions.el @@ -1,8 +1,7 @@ (eval-when-compile (unless (require 'cl-lib nil t) (require 'cl) - (defalias 'cl-case 'case) - (defalias 'cl-copy-list 'copy-list)) + (defalias 'cl-case 'case)) ) (defconst solarized-description @@ -93,7 +92,7 @@ the \"Gen RGB\" column in solarized-definitions.el to improve them further." (defun solarized-face-for-index (facespec index &optional light) "Creates a face from facespec where the colors use the names from `solarized-colors`." - (let ((new-fontspec (cl-copy-list facespec))) + (let ((new-fontspec (copy-sequence facespec))) (dolist (property '(:foreground :background :color)) (let ((color-name (plist-get new-fontspec property))) (when color-name