1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-10 16:20:17 -08:00

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.
This commit is contained in:
Andrea Corallo 2020-08-13 23:47:54 +02:00
parent 3224a44306
commit 88b860ef6c
2 changed files with 7 additions and 8 deletions

View file

@ -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.