1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

(batch-byte-compile-emacs): New function.

This commit is contained in:
Richard M. Stallman 1994-11-18 17:50:37 +00:00
parent e85c9f90e8
commit af8eb50dd2

View file

@ -5,3 +5,10 @@
This is used after installing the patches for a new version."
(let ((load-path (list (expand-file-name "lisp"))))
(byte-recompile-directory "lisp")))
(defun batch-byte-compile-emacs ()
"Compile new files installed in the Emacs `lisp' directory.
This is used after installing the patches for a new version.
It uses the command line arguments to specify the files to compile."
(let ((load-path (list (expand-file-name "lisp"))))
(batch-byte-compile)))