Function: byte-compile-no-args

byte-compile-no-args is a byte-compiled function defined in bytecomp.el.gz.

Signature

(byte-compile-no-args FORM)

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/bytecomp.el.gz
(defun byte-compile-no-args (form)
  (if (not (= (length form) 1))
      (byte-compile-subr-wrong-args form "none")
    (byte-compile-out (get (car form) 'byte-opcode) 0)))