Mercurial > emacs
changeset 101552:095c55c0882d
(rmail-get-coding-system): Fix previous change.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Tue, 27 Jan 2009 04:49:33 +0000 |
parents | 75d377a936d1 |
children | a44c0bbce387 |
files | lisp/mail/rmail.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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)))