Mercurial > emacs
annotate lisp/patcomp.el @ 15484:e3f8bfd1bb1f
(choose-completion-string): Don't exit the minibuffer
when a directory name is chosen.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 22 Jun 1996 04:50:32 +0000 |
parents | bd56cdc4d07b |
children | a06008c964f8 |
rev | line source |
---|---|
15261 | 1 |
10015 | 2 ;;; This function is used by the patch files to update Emacs releases. |
3 | |
4 (defun batch-byte-recompile-emacs () | |
5 "Recompile the Emacs `lisp' directory. | |
6 This is used after installing the patches for a new version." | |
7 (let ((load-path (list (expand-file-name "lisp")))) | |
8 (byte-recompile-directory "lisp"))) | |
10016
de27224b0b43
(batch-byte-compile-emacs): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10015
diff
changeset
|
9 |
de27224b0b43
(batch-byte-compile-emacs): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10015
diff
changeset
|
10 (defun batch-byte-compile-emacs () |
de27224b0b43
(batch-byte-compile-emacs): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10015
diff
changeset
|
11 "Compile new files installed in the Emacs `lisp' directory. |
de27224b0b43
(batch-byte-compile-emacs): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10015
diff
changeset
|
12 This is used after installing the patches for a new version. |
de27224b0b43
(batch-byte-compile-emacs): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10015
diff
changeset
|
13 It uses the command line arguments to specify the files to compile." |
de27224b0b43
(batch-byte-compile-emacs): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10015
diff
changeset
|
14 (let ((load-path (list (expand-file-name "lisp")))) |
de27224b0b43
(batch-byte-compile-emacs): New function.
Richard M. Stallman <rms@gnu.org>
parents:
10015
diff
changeset
|
15 (batch-byte-compile))) |