From 6b0c98f5508f532f29b1298e424058aa48295411 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Tue, 27 Jan 2009 04:49:33 +0000 Subject: [PATCH] (rmail-get-coding-system): Fix previous change. --- lisp/mail/rmail.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index a96b52b8602..4662c4c32a0 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -942,7 +942,7 @@ This function also reinitializes local variables used by Rmail." The buffer is expected to be narrowed to just the header of the message." (save-excursion (goto-char (point-min)) - (if (re-search-forward rmail-mime-charset-pattern) + (if (re-search-forward rmail-mime-charset-pattern nil t) (coding-system-from-name (match-string 1)) 'undecided))) -- 2.39.5