From e434948956b86779567cfc4bb1e8f5292f9fd88a Mon Sep 17 00:00:00 2001 From: Charles Comstock Date: Mon, 11 Jul 2022 15:39:37 -0500 Subject: [PATCH] Add missing require for cl-macs It was definitely in use for cl-assert, cl-first, cl-case and a couple other examples, so probably included by one of the many libraries referenced. However this PR also added cl-loop and cl-destructuring-bind usage, so better to make it explicit. --- clj-refactor.el | 1 + 1 file changed, 1 insertion(+) diff --git a/clj-refactor.el b/clj-refactor.el index 09d38c60..c5bf4b06 100644 --- a/clj-refactor.el +++ b/clj-refactor.el @@ -36,6 +36,7 @@ (require 'yasnippet) (require 'paredit) (require 'multiple-cursors-core) +(require 'cl-macs) (require 'clojure-mode) (require 'cider) (require 'parseedn)