# HG changeset patch # User Juanma Barranquero # Date 1164903997 0 # Node ID 5a84c691a68588a324ab5cc88ef09f89d34196b2 # Parent b77f0a41081912cc60e41a55cf88d1bb28b0bc5b (byte-optimize, byte-compile-warnings): Doc fixes. diff -r b77f0a410819 -r 5a84c691a685 lisp/emacs-lisp/bytecomp.el --- a/lisp/emacs-lisp/bytecomp.el Thu Nov 30 16:10:03 2006 +0000 +++ b/lisp/emacs-lisp/bytecomp.el Thu Nov 30 16:26:37 2006 +0000 @@ -264,11 +264,12 @@ ;; this way can never be run in Emacs 18, and may even cause it to crash.") (defcustom byte-optimize t - "*Enables optimization in the byte compiler. -nil means don't do any optimization. -t means do all optimizations. -`source' means do source-level optimizations only. -`byte' means do code-level optimizations only." + "*Enable optimization in the byte compiler. +Possible values are: + nil - no optimization + t - all optimizations + `source' - source-level optimizations only + `byte' - code-level optimizations only" :group 'bytecomp :type '(choice (const :tag "none" nil) (const :tag "all" t) @@ -336,7 +337,7 @@ (defcustom byte-compile-warnings t "*List of warnings that the byte-compiler should issue (t for all). -Elements of the list may be be: +Elements of the list may be: free-vars references to variables not in the current lexical scope. unresolved calls to unknown functions.