1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-09 07:40:39 -08:00

; lisp/emacs-lisp/comp.el (comp-emit-narg-prologue): Nit.

This commit is contained in:
Andrea Corallo 2020-12-28 11:22:20 +01:00
parent ccce15299b
commit 8a0467e2ef

View 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)