Function: dont-compile

dont-compile is a macro defined in byte-run.el.gz.

This macro is obsolete since 24.4.

Signature

(dont-compile &rest BODY)

Documentation

Like progn, but the body always runs interpreted (not compiled).

If you think you need this, you're probably making a mistake somewhere.

Probably introduced at or before Emacs version 24.4.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/byte-run.el.gz
(defmacro dont-compile (&rest body)
  "Like `progn', but the body always runs interpreted (not compiled).
If you think you need this, you're probably making a mistake somewhere."
  (declare (debug t) (indent 0) (obsolete nil "24.4"))
  (list 'eval (list 'quote (if (cdr body) (cons 'progn body) (car body)))))