diff options
Diffstat (limited to 'lisp/emacs-lisp/bytecomp.el')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 732a1629177..3e7674eeef6 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -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") |