diff options
author | Richard M. Stallman <rms@gnu.org> | 2003-02-17 07:54:27 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2003-02-17 07:54:27 +0000 |
commit | f1b1a9f2b42889756f5dd2f87690c6f1410ebd2e (patch) | |
tree | 939f3e945671690a2f1c2aa7fbf0e286e94ad5de /lisp/emacs-lisp | |
parent | 63020c460102e3eafa8afb94b0292d7e4ecc63e6 (diff) | |
download | emacs-f1b1a9f2b42889756f5dd2f87690c6f1410ebd2e.tar.gz emacs-f1b1a9f2b42889756f5dd2f87690c6f1410ebd2e.tar.bz2 emacs-f1b1a9f2b42889756f5dd2f87690c6f1410ebd2e.zip |
Comment change.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 3a0e7da2b1c..fc5fd980696 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -10,7 +10,7 @@ ;;; This version incorporates changes up to version 2.10 of the ;;; Zawinski-Furuseth compiler. -(defconst byte-compile-version "$Revision: 2.120 $") +(defconst byte-compile-version "$Revision: 2.121 $") ;; This file is part of GNU Emacs. @@ -91,17 +91,17 @@ ;; finding unused functions, as well as simple ;; performance metering. ;; byte-compile-warnings List of warnings to issue, or t. May contain -;; 'free-vars (references to variables not in the -;; current lexical scope) -;; 'unresolved (calls to unknown functions) -;; 'callargs (lambda calls with args that don't -;; match the lambda's definition) -;; 'redefine (function cell redefined from -;; a macro to a lambda or vice versa, -;; or redefined to take other args) -;; 'obsolete (obsolete variables and functions) -;; 'noruntime (calls to functions only defined -;; within `eval-when-compile') +;; `free-vars' (references to variables not in the +;; current lexical scope) +;; `unresolved' (calls to unknown functions) +;; `callargs' (lambda calls with args that don't +;; match the lambda's definition) +;; `redefine' (function cell redefined from +;; a macro to a lambda or vice versa, +;; or redefined to take other args) +;; `obsolete' (obsolete variables and functions) +;; `noruntime' (calls to functions only defined +;; within `eval-when-compile') ;; byte-compile-compatibility Whether the compiler should ;; generate .elc files which can be loaded into ;; generic emacs 18. |