annotate lisp/patcomp.el @ 12409:6e374b28ecc3

(update_frame): Pretend cursor is in echo area rather than put it in a minuffer hidden by the echo area.
author Richard M. Stallman <rms@gnu.org>
date Wed, 28 Jun 1995 09:38:18 +0000
parents de27224b0b43
children bd56cdc4d07b
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")))
10016
de27224b0b43 (batch-byte-compile-emacs): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10015
diff changeset
8
de27224b0b43 (batch-byte-compile-emacs): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10015
diff changeset
9 (defun batch-byte-compile-emacs ()
de27224b0b43 (batch-byte-compile-emacs): New function.
Richard M. Stallman <rms@gnu.org>
parents: 10015
diff changeset
10 "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
11 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
12 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
13 (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
14 (batch-byte-compile)))