aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorMiles Bader2004-10-14 07:33:19 +0000
committerMiles Bader2004-10-14 07:33:19 +0000
commitebbeed623cb9902e520fc67d6d271e222e16867f (patch)
treed84a4436a44adbc53082bf34818a984809e914c4 /lisp
parent7ba426fb285aa6abc6f6657ad8d02a8e55907715 (diff)
downloademacs-ebbeed623cb9902e520fc67d6d271e222e16867f.tar.gz
emacs-ebbeed623cb9902e520fc67d6d271e222e16867f.zip
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-615
Merge from gnus--rel--5.10 Patches applied: * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-46 Update from CVS * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-47 Merge from emacs--cvs-trunk--0 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-48 Update from CVS * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-49 Add {arch}/=commit-merge-make-log * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-50 {arch}/=commit-merge-make-log: Don't die if there are no ChangeLog changes
Diffstat (limited to 'lisp')
-rw-r--r--lisp/gnus/ChangeLog11
-rw-r--r--lisp/gnus/message.el4
2 files changed, 13 insertions, 2 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 782c2a260a6..292d36ce9e1 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,14 @@
12004-10-13 Katsumi Yamaoka <yamaoka@jpl.org>
2
3 * message.el (message-tokenize-header): Fix 2004-09-06 change
4 which used point-min in the wrong place.
5
62004-10-12 Simon Josefsson <jas@extundo.com>
7
8 * net/tls.el (tls-certtool-program): New variable.
9 (tls-certificate-information): New function, based on
10 ssl-certificate-information.
11
12004-10-10 Reiner Steib <Reiner.Steib@gmx.de> 122004-10-10 Reiner Steib <Reiner.Steib@gmx.de>
2 13
3 * gnus-sum.el: Mention that multibyte characters don't work as marks. 14 * gnus-sum.el: Mention that multibyte characters don't work as marks.
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el
index bfaf1675703..c9d05d1a0fe 100644
--- a/lisp/gnus/message.el
+++ b/lisp/gnus/message.el
@@ -1615,11 +1615,11 @@ is used by default."
1615 (if (not header) 1615 (if (not header)
1616 nil 1616 nil
1617 (let ((regexp (format "[%s]+" (or separator ","))) 1617 (let ((regexp (format "[%s]+" (or separator ",")))
1618 (beg (point-min))
1619 (first t) 1618 (first t)
1620 quoted elems paren) 1619 beg quoted elems paren)
1621 (with-temp-buffer 1620 (with-temp-buffer
1622 (mm-enable-multibyte) 1621 (mm-enable-multibyte)
1622 (setq beg (point-min))
1623 (insert header) 1623 (insert header)
1624 (goto-char (point-min)) 1624 (goto-char (point-min))
1625 (while (not (eobp)) 1625 (while (not (eobp))