branch: elpa/emacsql
commit ff4c59a2a767abbaea84972802b20195213b71b1
Author: Christopher Wellons <well...@nullprogram.com>
Commit: Christopher Wellons <well...@nullprogram.com>

    Fix cl-lib mistake.
---
 emacsql.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/emacsql.el b/emacsql.el
index 2d09f60aff..01ee0ddd49 100644
--- a/emacsql.el
+++ b/emacsql.el
@@ -517,7 +517,7 @@ definitions for return from a `emacsql-defexpander'."
           (:temporary (setf temporary "TEMPORARY"))
           (otherwise (setf name (var item :identifier)))))
       (let* ((items (list temporary "TABLE" if-not-exists name))
-             (spec (remove-if-not #'identity items)))
+             (spec (cl-remove-if-not #'identity items)))
         (format "%s (%s)" (mapconcat #'identity spec " ")
                 (emacsql--schema-to-string schema))))))
 

Reply via email to