diff options
author | Andrea Corallo <akrl@sdf.org> | 2020-04-03 20:09:02 +0100 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-04-05 21:10:49 +0100 |
commit | 37a9d1e42b568b6a7b528ef40a209ab6658ff358 (patch) | |
tree | 096535effe6c05a7a2021a912c1d51e0ed6dd418 /lisp/emacs-lisp | |
parent | fcce8dd3614c4217ef7f908a059c0f5731517782 (diff) | |
download | emacs-37a9d1e42b568b6a7b528ef40a209ab6658ff358.tar.gz emacs-37a9d1e42b568b6a7b528ef40a209ab6658ff358.tar.bz2 emacs-37a9d1e42b568b6a7b528ef40a209ab6658ff358.zip |
* lisp/emacs-lisp/comp.el (native-compile): Better documentation.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/comp.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index d29e2f55f1f..3f4dba6b1ff 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -2229,6 +2229,8 @@ display a message." "Compile FUNCTION-OR-FILE into native code. This is the entry-point for the Emacs Lisp native compiler. FUNCTION-OR-FILE is a function symbol or a path to an Elisp file. +When WITH-LATE-LOAD non Nil mark the compilation unit for late load +once finished compiling (internal use only). Return the compilation unit file name." (unless (or (functionp function-or-file) (stringp function-or-file)) |