diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-11-18 17:42:26 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-11-18 17:42:26 +0000 |
commit | e85c9f90e8f028192ee8650d200008691b484797 (patch) | |
tree | 59ba64a7883c99400974a033bb0e485847caf92d | |
parent | 07a0bda3c9ca05fb3e3f7c232d28410247d83df0 (diff) |
Initial revision
-rw-r--r-- | lisp/patcomp.el | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lisp/patcomp.el b/lisp/patcomp.el new file mode 100644 index 0000000000..bb91c04769 --- /dev/null +++ b/lisp/patcomp.el @@ -0,0 +1,7 @@ +;;; This function is used by the patch files to update Emacs releases. + +(defun batch-byte-recompile-emacs () + "Recompile the Emacs `lisp' directory. +This is used after installing the patches for a new version." + (let ((load-path (list (expand-file-name "lisp")))) + (byte-recompile-directory "lisp"))) |