Function: byte-compile-subr-wrong-args
byte-compile-subr-wrong-args is a byte-compiled function defined in
bytecomp.el.gz.
Signature
(byte-compile-subr-wrong-args FORM N)
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/bytecomp.el.gz
(defun byte-compile-subr-wrong-args (form n)
(byte-compile-set-symbol-position (car form))
(byte-compile-warn "`%s' called with %d arg%s, but requires %s"
(car form) (length (cdr form))
(if (= 1 (length (cdr form))) "" "s") n)
;; Get run-time wrong-number-of-args error.
(byte-compile-normal-call form))