projects
/
elisp
/
gnus.git-
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ea69eb4
)
Synch to No Gnus 200410130731.
author
yamaoka
<yamaoka>
Wed, 13 Oct 2004 07:31:54 +0000
(07:31 +0000)
committer
yamaoka
<yamaoka>
Wed, 13 Oct 2004 07:31:54 +0000
(07:31 +0000)
lisp/ChangeLog
patch
|
blob
|
history
lisp/message.el
patch
|
blob
|
history
diff --git
a/lisp/ChangeLog
b/lisp/ChangeLog
index
102ee98
..
f3a7ee4
100644
(file)
--- a/
lisp/ChangeLog
+++ b/
lisp/ChangeLog
@@
-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.
diff --git
a/lisp/message.el
b/lisp/message.el
index
7a32809
..
1ce5fdc
100644
(file)
--- 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))