diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-09-28 13:32:44 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-09-28 13:32:44 +0000 |
commit | 458f70dc008b222c77d96795a33ff2ae6866d6e6 (patch) | |
tree | 53e6da3459a93092417ea8647285e046ebc9e5e2 /lisp/emacs-lisp/bytecomp.el | |
parent | c8b88e9f92c4d86237fe26550e8aefa5858852fd (diff) | |
download | emacs-458f70dc008b222c77d96795a33ff2ae6866d6e6.tar.gz emacs-458f70dc008b222c77d96795a33ff2ae6866d6e6.tar.bz2 emacs-458f70dc008b222c77d96795a33ff2ae6866d6e6.zip |
(byte-compile-dynamic): Doc fix.
Diffstat (limited to 'lisp/emacs-lisp/bytecomp.el')
-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 @@ ;;; This version incorporates changes up to version 2.10 of the ;;; Zawinski-Furuseth compiler. -(defconst byte-compile-version "$Revision: 2.50 $") +(defconst byte-compile-version "$Revision: 2.51 $") ;; This file is part of GNU Emacs. @@ -278,7 +278,8 @@ This includes variable references and calls to functions such as `car'." (defvar byte-compile-dynamic nil "If non-nil, compile function bodies so they load lazily. -They are hidden comments in the compiled file, and brought into core when the +They are hidden in comments in the compiled file, +and each one is brought into core when the function is called. To enable this option, make it a file-local variable |