1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-22 07:09:54 +00: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)))