diff options
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index d9890b5c37a..e0bcdce502b 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -137,6 +137,12 @@ "Emacs Lisp byte-compiler." :group 'lisp) +(defcustom compilation-safety 1 + "Safety level." + :type 'integer + :safe #'integerp + :version "30.1") + (defcustom emacs-lisp-file-regexp "\\.el\\'" "Regexp which matches Emacs Lisp source files. If you change this, you might want to set `byte-compile-dest-file-function'. |