diff options
| author | Richard M. Stallman | 1998-09-28 13:32:44 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-09-28 13:32:44 +0000 |
| commit | 458f70dc008b222c77d96795a33ff2ae6866d6e6 (patch) | |
| tree | 53e6da3459a93092417ea8647285e046ebc9e5e2 | |
| parent | c8b88e9f92c4d86237fe26550e8aefa5858852fd (diff) | |
| download | emacs-458f70dc008b222c77d96795a33ff2ae6866d6e6.tar.gz emacs-458f70dc008b222c77d96795a33ff2ae6866d6e6.zip | |
(byte-compile-dynamic): Doc fix.
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index af8d12b2151..fa9f94e7ded 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el | |||
| @@ -9,7 +9,7 @@ | |||
| 9 | 9 | ||
| 10 | ;;; This version incorporates changes up to version 2.10 of the | 10 | ;;; This version incorporates changes up to version 2.10 of the |
| 11 | ;;; Zawinski-Furuseth compiler. | 11 | ;;; Zawinski-Furuseth compiler. |
| 12 | (defconst byte-compile-version "$Revision: 2.50 $") | 12 | (defconst byte-compile-version "$Revision: 2.51 $") |
| 13 | 13 | ||
| 14 | ;; This file is part of GNU Emacs. | 14 | ;; This file is part of GNU Emacs. |
| 15 | 15 | ||
| @@ -278,7 +278,8 @@ This includes variable references and calls to functions such as `car'." | |||
| 278 | 278 | ||
| 279 | (defvar byte-compile-dynamic nil | 279 | (defvar byte-compile-dynamic nil |
| 280 | "If non-nil, compile function bodies so they load lazily. | 280 | "If non-nil, compile function bodies so they load lazily. |
| 281 | They are hidden comments in the compiled file, and brought into core when the | 281 | They are hidden in comments in the compiled file, |
| 282 | and each one is brought into core when the | ||
| 282 | function is called. | 283 | function is called. |
| 283 | 284 | ||
| 284 | To enable this option, make it a file-local variable | 285 | To enable this option, make it a file-local variable |