Mercurial > emacs
view lisp/=bytecpat.el @ 16241:3c84b8d28902
(rmail-insert-inbox-text): Detect locked
RMAIL files at the outset, before copying any files.
(rmail-find-all-files): Eliminate recursive scan. Rely on directory-files
to do the filtering.
(rmail-convert-to-babyl-format):
Increase sit-for timeout to 3 seconds.
(rmail-get-new-mail): Handle files in multiple batches,
in case two inboxes have the same last name component.
(rmail-show-message): Bind `end' after clearing the
"unseen" attribute.
(rmail-show-message): Clear `unseen' even if header
is already reformatted--but don't do it if rmail-not-really-seen.
(rmail-not-really-seen): New variable.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 19 Sep 1996 03:21:11 +0000 |
parents | 84acc3adcd63 |
children |
line wrap: on
line source
;;; bytecpat.el --- do recompilation for Emacs patch files. ;;; 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"))) (defun batch-byte-compile-emacs () "Compile new files installed in the Emacs `lisp' directory. This is used after installing the patches for a new version. It uses the command line arguments to specify the files to compile." (let ((load-path (list (expand-file-name "lisp")))) (batch-byte-compile)))