emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/autothemer 869c0e98d7 10/21: Merge pull request #3 from sy


From: ELPA Syncer
Subject: [nongnu] elpa/autothemer 869c0e98d7 10/21: Merge pull request #3 from syohex/cl-lib
Date: Thu, 6 Jan 2022 02:58:09 -0500 (EST)

branch: elpa/autothemer
commit 869c0e98d76a09bbedef2adab24bc829572caf6b
Merge: 8b865c39a2 84a331860f
Author: sebastiansturm <sturm@itp.uni-leipzig.de>
Commit: GitHub <noreply@github.com>

    Merge pull request #3 from syohex/cl-lib
    
    Fix for cl-lib
---
 autothemer.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/autothemer.el b/autothemer.el
index 53182accd4..33a14f3d13 100644
--- a/autothemer.el
+++ b/autothemer.el
@@ -5,7 +5,7 @@
 ;; Author: Sebastian Sturm
 ;; URL: https://github.com/sebastiansturm/autothemer
 ;; Version: 0.2
-;; Package-Requires: ((dash "2.10.0") (emacs "24"))
+;; Package-Requires: ((dash "2.10.0") (emacs "24") (cl-lib "0.5"))
 
 ;;; Commentary:
 
@@ -14,7 +14,7 @@
 ;; face customization code using the theme's color palette.
 
 ;;; Code:
-(require 'cl-macs)
+(require 'cl-lib)
 (require 'dash)
 
 (cl-defstruct autothemer--color name value)
@@ -180,7 +180,7 @@ unbound symbols, such as `normal' or `demibold'."
 
 (defun autothemer--replace-nil-by-precursor (palette-row)
   "Iterate over elements of PALETTE-ROW and replace every occurrence of nil by 
its most recent non-nil precursor.  The first element of PALETTE-ROW should be 
non-nil."
-  (assert (car palette-row))
+  (cl-assert (car palette-row))
   (let* ((color-name (car palette-row))
          (color-definitions (cdr palette-row))
          (last-definition))
@@ -228,7 +228,7 @@ palette used in the most recent invocation of
 
 (defun autothemer--append-column (list-of-lists new-column)
   "If LIST-OF-LISTS is nil, return NEW-COLUMN.  Otherwise, append to every 
element of LIST-OF-LISTS the corresponding element of NEW-COLUMN."
-  (assert (or (not list-of-lists) (eq (length list-of-lists) (length 
new-column))))
+  (cl-assert (or (not list-of-lists) (eq (length list-of-lists) (length 
new-column))))
   (if list-of-lists (-zip-with #'append list-of-lists new-column)
     new-column))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]