(font-lock-comment-face): For tty's with dark
[bpt/emacs.git] / lisp / patcomp.el
CommitLineData
5abdc915 1;;; patcomp.el --- used by patch files to update Emacs releases
e85c9f90
RS
2
3(defun batch-byte-recompile-emacs ()
4 "Recompile the Emacs `lisp' directory.
5This is used after installing the patches for a new version."
6 (let ((load-path (list (expand-file-name "lisp"))))
7 (byte-recompile-directory "lisp")))
af8eb50d
RS
8
9(defun batch-byte-compile-emacs ()
10 "Compile new files installed in the Emacs `lisp' directory.
11This is used after installing the patches for a new version.
12It uses the command line arguments to specify the files to compile."
13 (let ((load-path (list (expand-file-name "lisp"))))
14 (batch-byte-compile)))