comparison lisp/patcomp.el @ 10016:de27224b0b43

(batch-byte-compile-emacs): New function.
author Richard M. Stallman <rms@gnu.org>
date Fri, 18 Nov 1994 17:50:37 +0000
parents f6c7d1ab2d6a
children bd56cdc4d07b
comparison
equal deleted inserted replaced
10015:f6c7d1ab2d6a 10016:de27224b0b43
3 (defun batch-byte-recompile-emacs () 3 (defun batch-byte-recompile-emacs ()
4 "Recompile the Emacs `lisp' directory. 4 "Recompile the Emacs `lisp' directory.
5 This is used after installing the patches for a new version." 5 This is used after installing the patches for a new version."
6 (let ((load-path (list (expand-file-name "lisp")))) 6 (let ((load-path (list (expand-file-name "lisp"))))
7 (byte-recompile-directory "lisp"))) 7 (byte-recompile-directory "lisp")))
8
9 (defun batch-byte-compile-emacs ()
10 "Compile new files installed in the Emacs `lisp' directory.
11 This is used after installing the patches for a new version.
12 It uses the command line arguments to specify the files to compile."
13 (let ((load-path (list (expand-file-name "lisp"))))
14 (batch-byte-compile)))