aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2006-11-30 16:26:37 +0000
committerJuanma Barranquero2006-11-30 16:26:37 +0000
commit9bb2e9f86baec86ae8db1fec1c68a4d744c5faa9 (patch)
tree87bc7d3e12b8b42240fab40faf17c8f4e659e9a0
parent3fc29559f5db6b5566ed154822043a7b4ab948e5 (diff)
downloademacs-9bb2e9f86baec86ae8db1fec1c68a4d744c5faa9.tar.gz
emacs-9bb2e9f86baec86ae8db1fec1c68a4d744c5faa9.zip
(byte-optimize, byte-compile-warnings): Doc fixes.
-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.