diff options
| author | Richard M. Stallman | 2003-02-17 07:54:27 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2003-02-17 07:54:27 +0000 |
| commit | f1b1a9f2b42889756f5dd2f87690c6f1410ebd2e (patch) | |
| tree | 939f3e945671690a2f1c2aa7fbf0e286e94ad5de | |
| parent | 63020c460102e3eafa8afb94b0292d7e4ecc63e6 (diff) | |
| download | emacs-f1b1a9f2b42889756f5dd2f87690c6f1410ebd2e.tar.gz emacs-f1b1a9f2b42889756f5dd2f87690c6f1410ebd2e.zip | |
Comment change.
| -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 @@ | |||
| 10 | 10 | ||
| 11 | ;;; This version incorporates changes up to version 2.10 of the | 11 | ;;; This version incorporates changes up to version 2.10 of the |
| 12 | ;;; Zawinski-Furuseth compiler. | 12 | ;;; Zawinski-Furuseth compiler. |
| 13 | (defconst byte-compile-version "$Revision: 2.120 $") | 13 | (defconst byte-compile-version "$Revision: 2.121 $") |
| 14 | 14 | ||
| 15 | ;; This file is part of GNU Emacs. | 15 | ;; This file is part of GNU Emacs. |
| 16 | 16 | ||
| @@ -91,17 +91,17 @@ | |||
| 91 | ;; finding unused functions, as well as simple | 91 | ;; finding unused functions, as well as simple |
| 92 | ;; performance metering. | 92 | ;; performance metering. |
| 93 | ;; byte-compile-warnings List of warnings to issue, or t. May contain | 93 | ;; byte-compile-warnings List of warnings to issue, or t. May contain |
| 94 | ;; 'free-vars (references to variables not in the | 94 | ;; `free-vars' (references to variables not in the |
| 95 | ;; current lexical scope) | 95 | ;; current lexical scope) |
| 96 | ;; 'unresolved (calls to unknown functions) | 96 | ;; `unresolved' (calls to unknown functions) |
| 97 | ;; 'callargs (lambda calls with args that don't | 97 | ;; `callargs' (lambda calls with args that don't |
| 98 | ;; match the lambda's definition) | 98 | ;; match the lambda's definition) |
| 99 | ;; 'redefine (function cell redefined from | 99 | ;; `redefine' (function cell redefined from |
| 100 | ;; a macro to a lambda or vice versa, | 100 | ;; a macro to a lambda or vice versa, |
| 101 | ;; or redefined to take other args) | 101 | ;; or redefined to take other args) |
| 102 | ;; 'obsolete (obsolete variables and functions) | 102 | ;; `obsolete' (obsolete variables and functions) |
| 103 | ;; 'noruntime (calls to functions only defined | 103 | ;; `noruntime' (calls to functions only defined |
| 104 | ;; within `eval-when-compile') | 104 | ;; within `eval-when-compile') |
| 105 | ;; byte-compile-compatibility Whether the compiler should | 105 | ;; byte-compile-compatibility Whether the compiler should |
| 106 | ;; generate .elc files which can be loaded into | 106 | ;; generate .elc files which can be loaded into |
| 107 | ;; generic emacs 18. | 107 | ;; generic emacs 18. |