Function: byte-compile-one-or-two-args

byte-compile-one-or-two-args is a byte-compiled function defined in bytecomp.el.gz.

Signature

(byte-compile-one-or-two-args FORM)

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/bytecomp.el.gz
(defun byte-compile-one-or-two-args (form)
  (let ((len (length form)))
    (cond ((= len 2) (byte-compile-two-args (append form '(nil))))
	  ((= len 3) (byte-compile-two-args form))
	  (t (byte-compile-subr-wrong-args form "1-2")))))