diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-03-22 23:05:26 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-03-22 23:05:26 +0000 |
commit | 814c447faf58842b1ad32c8e15a6529e58987b8c (patch) | |
tree | 2d59aaa52da1adc2bbb99fb329b8ae1aa8ba0c83 /lisp/emacs-lisp | |
parent | a282cc8cb62f507742de10c5ab0522ee31a551ed (diff) | |
download | emacs-814c447faf58842b1ad32c8e15a6529e58987b8c.tar.gz emacs-814c447faf58842b1ad32c8e15a6529e58987b8c.tar.bz2 emacs-814c447faf58842b1ad32c8e15a6529e58987b8c.zip |
(batch-byte-compile-if-not-done): Add autoload cookie.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 6f8322d5ea5..7fabdd603a8 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.93 $") +(defconst byte-compile-version "$Revision: 2.94 $") ;; This file is part of GNU Emacs. @@ -3554,6 +3554,7 @@ invoked interactively." )) +;;;###autoload (defun batch-byte-compile-if-not-done () "Like `byte-compile-file' but doesn't recompile if already up to date. Use this from the command line, with `-batch'; |