]> git.eshelyaron.com Git - emacs.git/commitdiff
; lisp/emacs-lisp/comp.el (comp-emit-narg-prologue): Nit.
authorAndrea Corallo <akrl@sdf.org>
Mon, 28 Dec 2020 10:22:20 +0000 (11:22 +0100)
committerAndrea Corallo <akrl@sdf.org>
Mon, 28 Dec 2020 15:08:38 +0000 (16:08 +0100)
lisp/emacs-lisp/comp.el

index 8ed1427a5704dcd77ebdc78faea5e332db49e32b..a9caeace65ab8d7cb37718d52209016a4d1a8a2f 100644 (file)
@@ -1633,7 +1633,7 @@ the annotation emission."
               (comp-emit `(set-args-to-local ,(comp-slot-n i)))
               (comp-emit '(inc-args))
               finally (comp-emit '(jump entry_rest_args)))
-  (when (not (= minarg nonrest))
+  (when (/= minarg nonrest)
     (cl-loop for i from minarg below nonrest
              for bb = (intern (format "entry_fallback_%s" i))
              for next-bb = (if (= (1+ i) nonrest)