From: Richard M. Stallman Date: Sat, 23 Dec 1995 06:57:14 +0000 (+0000) Subject: (rmail): Allow nonexistent file as arg. X-Git-Tag: emacs-19.34~2042 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b5e10b2357dc19760d6f34e9909f189e5ef34205;p=emacs.git (rmail): Allow nonexistent file as arg. --- diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index 3e9ed328d51..91ad7d783ff 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -282,8 +282,7 @@ have a chance to specify a file name with the minibuffer. If `rmail-display-summary' is non-nil, make a summary for this RMAIL file." (interactive (if current-prefix-arg - (list (read-file-name "Run rmail on RMAIL file: " - nil nil t)))) + (list (read-file-name "Run rmail on RMAIL file: ")))) (let* ((file-name (expand-file-name (or file-name-arg rmail-file-name))) (existed (get-file-buffer file-name))) ;; Like find-file, but in the case where a buffer existed