Skip to content

Commit

Permalink
(rmail-reply): Don't forget to narrow header in
Browse files Browse the repository at this point in the history
MIME-mode.
  • Loading branch information
Gerd Moellmann committed Jul 6, 2001
1 parent 640aa97 commit 9be15e3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion lisp/mail/rmail.el
Expand Up @@ -3057,7 +3057,12 @@ use \\[mail-yank-original] to yank the original message into it."
;; rmail-view-buffer which doesn't contain any lines specific
;; to BABYL format (e.g. "*** EOOH ***"). Thus, there's no
;; need of narrowing in such a case.
(unless rmail-enable-mime
(if rmail-enable-mime
(narrow-to-region
(goto-char (point-min))
(if (search-forward "\n\n" nil 'move)
(1+ (match-beginning 0))
(point)))
(widen)
(goto-char (rmail-msgbeg rmail-current-message))
(forward-line 1)
Expand Down

0 comments on commit 9be15e3

Please sign in to comment.