emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

feature/native-comp 8a0467e 2/6: ; lisp/emacs-lisp/comp.el (comp-emit-na


From: Andrea Corallo
Subject: feature/native-comp 8a0467e 2/6: ; lisp/emacs-lisp/comp.el (comp-emit-narg-prologue): Nit.
Date: Mon, 28 Dec 2020 10:33:15 -0500 (EST)

branch: feature/native-comp
commit 8a0467e2ef3c29fc0e9aaec7b6436c9a9bb279d6
Author: Andrea Corallo <akrl@sdf.org>
Commit: Andrea Corallo <akrl@sdf.org>

    ; lisp/emacs-lisp/comp.el (comp-emit-narg-prologue): Nit.
---
 lisp/emacs-lisp/comp.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el
index 8ed1427..a9caeac 100644
--- a/lisp/emacs-lisp/comp.el
+++ b/lisp/emacs-lisp/comp.el
@@ -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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]