diff options
author | Andrea Corallo <akrl@sdf.org> | 2020-08-13 23:47:54 +0200 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-08-17 18:04:22 +0200 |
commit | 88b860ef6c687b8b1e3f00eb200f7fc1fb4425dd (patch) | |
tree | 6f0bb9adaa4ea8789c1e20fbb771ee7779673b47 /lisp/emacs-lisp | |
parent | 3224a443060a5f21bb910064fc06fe4432810355 (diff) | |
download | emacs-88b860ef6c687b8b1e3f00eb200f7fc1fb4425dd.tar.gz emacs-88b860ef6c687b8b1e3f00eb200f7fc1fb4425dd.tar.bz2 emacs-88b860ef6c687b8b1e3f00eb200f7fc1fb4425dd.zip |
Make comp-deferred-compilation a simple global and set it on by default
* src/comp.c (comp_deferred_compilation): Doc update and set it to
true by default.
* lisp/emacs-lisp/comp.el (comp-deferred-compilation): Remove
customize.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/comp.el | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index 30cedf298e2..5805e5c96ab 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -41,13 +41,6 @@ "Emacs Lisp native compiler." :group 'lisp) -(defcustom comp-deferred-compilation nil - "If non-nil compile asyncronously all .elc files being loaded. -Once compilation happened each function definition is updated to -the native compiled one." - :type 'boolean - :group 'comp) - (defcustom comp-speed 2 "Compiler optimization level. From -1 to 3. - -1 functions are kept in bytecode form and no native compilation is performed. |