Function: byte-compile-arglist-vars

byte-compile-arglist-vars is a byte-compiled function defined in bytecomp.el.gz.

Signature

(byte-compile-arglist-vars ARGLIST)

Documentation

Return a list of the variables in the lambda argument list ARGLIST.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/bytecomp.el.gz
(defun byte-compile-arglist-vars (arglist)
  "Return a list of the variables in the lambda argument list ARGLIST."
  (remq '&rest (remq '&optional arglist)))