# HG changeset patch # User Kenichi Handa # Date 1233031773 0 # Node ID 095c55c0882ddb3ccdbff5742ed5b433e46219ec # Parent 75d377a936d1d64d4114b2f2d7aa485f42349a42 (rmail-get-coding-system): Fix previous change. diff -r 75d377a936d1 -r 095c55c0882d lisp/mail/rmail.el --- a/lisp/mail/rmail.el Tue Jan 27 04:48:56 2009 +0000 +++ b/lisp/mail/rmail.el Tue Jan 27 04:49:33 2009 +0000 @@ -942,7 +942,7 @@ 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)))