diff options
author | Andrea Corallo <akrl@sdf.org> | 2020-03-18 21:20:52 +0000 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-03-19 13:50:25 +0000 |
commit | 7565a4a1170bf36352ffd7283c18ac1843ae8123 (patch) | |
tree | c4864511342de14b8c570dd67b493e39674010db /lisp/emacs-lisp/comp.el | |
parent | c3e640bfa6623234e6757e1ffef1b0d6a3144ff8 (diff) | |
download | emacs-7565a4a1170bf36352ffd7283c18ac1843ae8123.tar.gz emacs-7565a4a1170bf36352ffd7283c18ac1843ae8123.tar.bz2 emacs-7565a4a1170bf36352ffd7283c18ac1843ae8123.zip |
Command late load when deferring compilation
Diffstat (limited to 'lisp/emacs-lisp/comp.el')
-rw-r--r-- | lisp/emacs-lisp/comp.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index f1e99c5ee16..44de2745c6c 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -41,7 +41,9 @@ :group 'lisp) (defcustom comp-deferred-compilation nil - "If t compile asyncronously all lexically bound .elc files being loaded." + "If t compile asyncronously all lexically bound .elc files being loaded. +Once compilation happened each function definition is updated to +the native compiled one." :type 'boolean :group 'comp) |