aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorKenichi Handa1998-02-20 11:15:28 +0000
committerKenichi Handa1998-02-20 11:15:28 +0000
commit55e2a603da46526b3cc838738822dc5f247962de (patch)
tree8ba34fa29604047362e86534abb734075cbbf144 /lisp
parent3f49e599457bcc8b56916382dcc41180621c1992 (diff)
downloademacs-55e2a603da46526b3cc838738822dc5f247962de.tar.gz
emacs-55e2a603da46526b3cc838738822dc5f247962de.zip
(rmail-decode-babyl-format): Message modified.
(rmail): Comment for the binding of rmail-enable-multibyte added.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/mail/rmail.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el
index 2eb712e9338..d55e11dbb0e 100644
--- a/lisp/mail/rmail.el
+++ b/lisp/mail/rmail.el
@@ -454,6 +454,9 @@ If `rmail-display-summary' is non-nil, make a summary for this RMAIL file."
454 (setq rmail-enable-mime nil)))) 454 (setq rmail-enable-mime nil))))
455 (let* ((file-name (expand-file-name (or file-name-arg rmail-file-name))) 455 (let* ((file-name (expand-file-name (or file-name-arg rmail-file-name)))
456 (existed (get-file-buffer file-name)) 456 (existed (get-file-buffer file-name))
457 ;; This binding is necessary because we much decide if we
458 ;; need code conversion while the buffer is unibyte
459 ;; (i.e. enable-multibyte-characters is nil).
457 (rmail-enable-multibyte (default-value 'enable-multibyte-characters)) 460 (rmail-enable-multibyte (default-value 'enable-multibyte-characters))
458 ;; Since the file may contain messages of different encodings 461 ;; Since the file may contain messages of different encodings
459 ;; at the tail (non-BYBYL part), we can't decode them at once 462 ;; at the tail (non-BYBYL part), we can't decode them at once
@@ -606,9 +609,9 @@ Note: it means the file has no messages in it.\n\^_")))
606 (goto-char (point)) 609 (goto-char (point))
607 (setq from (point)) 610 (setq from (point))
608 (if (= (% count 10) 0) 611 (if (= (% count 10) 0)
609 (message "Decoding messages (%d)..." count)) 612 (message "Decoding messages...%d" count))
610 (setq count (1+ count))) 613 (setq count (1+ count)))
611 (message "Decoding messages (%d)...done" count) 614 (message "Decoding messages...done")
612 (set-buffer-file-coding-system rmail-file-coding-system) 615 (set-buffer-file-coding-system rmail-file-coding-system)
613 (set-buffer-modified-p modifiedp))))) 616 (set-buffer-modified-p modifiedp)))))
614 617