]> git.eshelyaron.com Git - emacs.git/commitdiff
fix missing cl- prefix in comp.el
authorAndrea Corallo <akrl@sdf.org>
Mon, 9 Sep 2019 17:43:12 +0000 (19:43 +0200)
committerAndrea Corallo <akrl@sdf.org>
Wed, 1 Jan 2020 10:37:47 +0000 (11:37 +0100)
lisp/emacs-lisp/comp.el

index c398810186dcdfa07e54ee4a560b81ff370b6cd3..bbef9fc379956969f1a30631405af8f543a6cf35 100644 (file)
@@ -290,7 +290,7 @@ Put PREFIX in front of it."
   (byte-compile-file filename)
   (setf (comp-ctxt-top-level-defvars comp-ctxt)
         (reverse (mapcar (lambda (x)
-                           (ecase (car x)
+                           (cl-ecase (car x)
                              ('defvar (cdr x))
                              ('defconst (cdr x))))
                          byte-to-native-top-level-forms)))