git.fiddlerwoaroof.com
Browse code

chore(emacs): cleanup cl warnings

Edward Langley authored on 08/12/2020 01:59:12
Showing 1 changed files
... ...
@@ -117,9 +117,9 @@
117 117
   (:method ((map list) key)
118 118
            (typecase (car map)
119 119
              (cons (cdr (cl-assoc key map :test 'equal)))
120
-             (t (loop for (a-key . value) on map by #'cddr
121
-                      when (equal key a-key) do
122
-                      (return (car value)))))))
120
+             (t (cl-loop for (a-key . value) on map by #'cddr
121
+                         when (equal key a-key) do
122
+                         (return (car value)))))))
123 123
 
124 124
 (fwoar/def-ns-fun key (key)
125 125
   (lambda (map)
... ...
@@ -153,4 +153,5 @@
153 153
                      (apply f args))
154 154
                    r))))
155 155
 
156
+(provide 'fwoar-functional-utils)
156 157
 ;;; fwoar-functional-utils.el ends here