From 9087c156a530b2a3aaf784314228cded28406b3d Mon Sep 17 00:00:00 2001 From: yamaoka Date: Wed, 13 Oct 2004 07:31:54 +0000 Subject: [PATCH] Synch to No Gnus 200410130731. --- lisp/ChangeLog | 5 +++++ lisp/message.el | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) 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)) -- 1.7.10.4