aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/emacs-lisp/bytecomp.el13
1 files changed, 7 insertions, 6 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index 0fa2da23721..6790f199206 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -264,11 +264,12 @@ facilities that have been added more recently."
264;; this way can never be run in Emacs 18, and may even cause it to crash.") 264;; this way can never be run in Emacs 18, and may even cause it to crash.")
265 265
266(defcustom byte-optimize t 266(defcustom byte-optimize t
267 "*Enables optimization in the byte compiler. 267 "*Enable optimization in the byte compiler.
268nil means don't do any optimization. 268Possible values are:
269t means do all optimizations. 269 nil - no optimization
270`source' means do source-level optimizations only. 270 t - all optimizations
271`byte' means do code-level optimizations only." 271 `source' - source-level optimizations only
272 `byte' - code-level optimizations only"
272 :group 'bytecomp 273 :group 'bytecomp
273 :type '(choice (const :tag "none" nil) 274 :type '(choice (const :tag "none" nil)
274 (const :tag "all" t) 275 (const :tag "all" t)
@@ -336,7 +337,7 @@ If it is 'byte, then only byte-level optimizations will be logged."
336(defcustom byte-compile-warnings t 337(defcustom byte-compile-warnings t
337 "*List of warnings that the byte-compiler should issue (t for all). 338 "*List of warnings that the byte-compiler should issue (t for all).
338 339
339Elements of the list may be be: 340Elements of the list may be:
340 341
341 free-vars references to variables not in the current lexical scope. 342 free-vars references to variables not in the current lexical scope.
342 unresolved calls to unknown functions. 343 unresolved calls to unknown functions.