diff options
author | Richard Stallman <rms@gnu.org> | 2025-02-17 16:56:22 -0500 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 2025-02-17 16:56:22 -0500 |
commit | abd861ca2694898b347b94251710da38c687dd68 (patch) | |
tree | 1e8d0a2680b7ce953d10fb3c91bca40658694e95 /lisp/emacs-lisp/bytecomp.el | |
parent | f3ef16f86ffbb0ab5b76fa11e85eda5b1eff4b4b (diff) | |
parent | 8a7c1a31ac0a61384661878e9f7f7e77ada34ade (diff) | |
download | emacs-abd861ca2694898b347b94251710da38c687dd68.tar.gz emacs-abd861ca2694898b347b94251710da38c687dd68.tar.bz2 emacs-abd861ca2694898b347b94251710da38c687dd68.zip |
merging with my changes in cond-star.el.
Diffstat (limited to 'lisp/emacs-lisp/bytecomp.el')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index e48cac6c9b1..88e45ddb868 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -3772,7 +3772,7 @@ This assumes the function has the `important-return-value' property." ;; Add missing &optional (or &rest) arguments. (dotimes (_ (- (/ (1+ fmax2) 2) alen)) (byte-compile-push-constant nil))) - ((zerop (logand fmax2 1)) + ((evenp fmax2) (byte-compile-report-error (format "Too many arguments for inlined function %S" form)) (byte-compile-discard (- alen (/ fmax2 2)))) |