Synch to No Gnus 200410130731.
authoryamaoka <yamaoka>
Wed, 13 Oct 2004 07:31:54 +0000 (07:31 +0000)
committeryamaoka <yamaoka>
Wed, 13 Oct 2004 07:31:54 +0000 (07:31 +0000)
lisp/ChangeLog
lisp/message.el

index 102ee98..f3a7ee4 100644 (file)
@@ -1,3 +1,8 @@
+2004-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * message.el (message-tokenize-header): Fix 2004-09-06 change
+       which used point-min in the wrong place.
+
 2004-10-12  Simon Josefsson  <jas@extundo.com>
 
        * net/tls.el (tls-certtool-program): New variable.
index 7a32809..1ce5fdc 100644 (file)
@@ -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))