From: yamaoka Date: Wed, 13 Oct 2004 07:31:54 +0000 (+0000) Subject: Synch to No Gnus 200410130731. X-Git-Tag: t-gnus-6_17_4-quimby-~714 X-Git-Url: http://git.chise.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9087c156a530b2a3aaf784314228cded28406b3d;p=elisp%2Fgnus.git- Synch to No Gnus 200410130731. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 102ee98..f3a7ee4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2004-10-13 Katsumi Yamaoka + + * message.el (message-tokenize-header): Fix 2004-09-06 change + which used point-min in the wrong place. + 2004-10-12 Simon Josefsson * net/tls.el (tls-certtool-program): New variable. diff --git a/lisp/message.el b/lisp/message.el index 7a32809..1ce5fdc 100644 --- a/lisp/message.el +++ b/lisp/message.el @@ -1852,11 +1852,11 @@ is used by default." (if (not header) nil (let ((regexp (format "[%s]+" (or separator ","))) - (beg (point-min)) (first t) - quoted elems paren) + beg quoted elems paren) (with-temp-buffer (set-buffer-multibyte t) + (setq beg (point-min)) (insert header) (goto-char (point-min)) (while (not (eobp))