comparison lisp/emacs-lisp/bytecomp.el @ 44103:f93538d76117

(batch-byte-compile-if-not-done): Add autoload cookie.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Fri, 22 Mar 2002 23:05:26 +0000
parents 4c6cdfeb929c
children a9c023f8b14b
comparison
equal deleted inserted replaced
44102:52468099fbec 44103:f93538d76117
8 ;; Maintainer: FSF 8 ;; Maintainer: FSF
9 ;; Keywords: lisp 9 ;; Keywords: lisp
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.93 $") 13 (defconst byte-compile-version "$Revision: 2.94 $")
14 14
15 ;; This file is part of GNU Emacs. 15 ;; This file is part of GNU Emacs.
16 16
17 ;; GNU Emacs is free software; you can redistribute it and/or modify 17 ;; GNU Emacs is free software; you can redistribute it and/or modify
18 ;; it under the terms of the GNU General Public License as published by 18 ;; it under the terms of the GNU General Public License as published by
3552 ) 3552 )
3553 (message "Generating call tree...done.") 3553 (message "Generating call tree...done.")
3554 )) 3554 ))
3555 3555
3556 3556
3557 ;;;###autoload
3557 (defun batch-byte-compile-if-not-done () 3558 (defun batch-byte-compile-if-not-done ()
3558 "Like `byte-compile-file' but doesn't recompile if already up to date. 3559 "Like `byte-compile-file' but doesn't recompile if already up to date.
3559 Use this from the command line, with `-batch'; 3560 Use this from the command line, with `-batch';
3560 it won't work in an interactive Emacs." 3561 it won't work in an interactive Emacs."
3561 (batch-byte-compile t)) 3562 (batch-byte-compile t))