Add some 'compilation-safety' documentation
* lisp/emacs-lisp/bytecomp.el (compilation-safety): Better doc. * doc/lispref/functions.texi (Declare Form): Add 'safety'. * doc/lispref/compile.texi (Native-Compilation Variables): Add 'compilation-safety'.
This commit is contained in:
parent
9e4e6d0fc9
commit
04e7078d5e
3 changed files with 33 additions and 4 deletions
|
@ -138,7 +138,11 @@
|
|||
:group 'lisp)
|
||||
|
||||
(defcustom compilation-safety 1
|
||||
"Safety level."
|
||||
"Safety level for compilation.
|
||||
Possible values are:
|
||||
0 emitted code can misbehave or crash Emacs if function declarations are not
|
||||
correct.
|
||||
1 emitted code is generated in a safe matter even if function are miss-declared."
|
||||
:type 'integer
|
||||
:safe #'integerp
|
||||
:version "30.1")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue