annotate lisp/patcomp.el @ 10015:f6c7d1ab2d6a

Initial revision
author Richard M. Stallman <rms@gnu.org>
date Fri, 18 Nov 1994 17:42:26 +0000
parents
children de27224b0b43
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10015
f6c7d1ab2d6a Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1 ;;; This function is used by the patch files to update Emacs releases.
f6c7d1ab2d6a Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2
f6c7d1ab2d6a Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
3 (defun batch-byte-recompile-emacs ()
f6c7d1ab2d6a Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
4 "Recompile the Emacs `lisp' directory.
f6c7d1ab2d6a Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
5 This is used after installing the patches for a new version."
f6c7d1ab2d6a Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
6 (let ((load-path (list (expand-file-name "lisp"))))
f6c7d1ab2d6a Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
7 (byte-recompile-directory "lisp")))