1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

*** empty log message ***

This commit is contained in:
Richard M. Stallman 1992-08-19 07:17:26 +00:00
parent c89475dcaa
commit 8defe99b80
2 changed files with 7 additions and 5 deletions

View file

@ -137,12 +137,12 @@ that file, but does not copy any new mail into the file."
(progn
;; Don't be confused by apparent local-variables spec
;; in the last message in the RMAIL file.
(let ((inhibit-local-variables t))
(let ((enable-local-variables nil))
(find-file file-name))
(if (verify-visited-file-modtime existed)
(progn (rmail-forget-messages)
(rmail-set-message-counters))))
(let ((inhibit-local-variables t))
(let ((enable-local-variables nil))
(find-file file-name)))
(if (and existed (> (buffer-size) 0))
;; Buffer not new and not empty; ensure in proper mode, but that's all.