From: Richard M. Stallman Date: Fri, 18 Nov 1994 17:50:37 +0000 (+0000) Subject: (batch-byte-compile-emacs): New function. X-Git-Tag: emacs-19.34~5839 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=af8eb50dd287ffeb2b6767f07c9191f946938ee1;p=emacs.git (batch-byte-compile-emacs): New function. --- diff --git a/lisp/patcomp.el b/lisp/patcomp.el index bb91c047696..e7c8652a5cc 100644 --- a/lisp/patcomp.el +++ b/lisp/patcomp.el @@ -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)))