Function: comp--func-arity
comp--func-arity is a byte-compiled function defined in comp.el.gz.
Signature
(comp--func-arity SUBR-NAME)
Documentation
Like func-arity but invariant against primitive redefinitions.
SUBR-NAME is the name of function.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(defun comp--func-arity (subr-name)
"Like `func-arity' but invariant against primitive redefinitions.
SUBR-NAME is the name of function."
(or (gethash subr-name comp-subr-arities-h)
(func-arity subr-name)))