Variable: no-native-compile

no-native-compile is a variable defined in comp.el.gz.

Value

nil

Documentation

Non-nil to prevent native-compiling of Emacs Lisp code.

Note that when no-byte-compile is set to non-nil it overrides the value of no-native-compile. This is normally set in local file variables at the end of the Emacs Lisp file:

;; Local Variables:
;; no-native-compile: t
;; End:

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(defvar no-native-compile nil
  "Non-nil to prevent native-compiling of Emacs Lisp code.
Note that when `no-byte-compile' is set to non-nil it overrides the value of
`no-native-compile'.
This is normally set in local file variables at the end of the
Emacs Lisp file:

\;; Local Variables:\n;; no-native-compile: t\n;; End:")