comparison lisp/emacs-lisp/bytecomp.el @ 88814:ee905d480b0a

(batch-byte-compile-if-not-done): Add autoload cookie.
author Dave Love <fx@gnu.org>
date Sat, 29 Jun 2002 11:09:35 +0000
parents bd4ee6f57fb1
children 5db2e48ffbcb
comparison
equal deleted inserted replaced
88813:48d05e216554 88814:ee905d480b0a
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$") 13 (defconst byte-compile-version "$Revision: 2.94.2.2 $")
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
3555 ) 3555 )
3556 (message "Generating call tree...done.") 3556 (message "Generating call tree...done.")
3557 )) 3557 ))
3558 3558
3559 3559
3560 ;;;###autoload
3560 (defun batch-byte-compile-if-not-done () 3561 (defun batch-byte-compile-if-not-done ()
3561 "Like `byte-compile-file' but doesn't recompile if already up to date. 3562 "Like `byte-compile-file' but doesn't recompile if already up to date.
3562 Use this from the command line, with `-batch'; 3563 Use this from the command line, with `-batch';
3563 it won't work in an interactive Emacs." 3564 it won't work in an interactive Emacs."
3564 (batch-byte-compile t)) 3565 (batch-byte-compile t))