comparison lisp/gnus/message.el @ 57489:f7785a1e8cf8

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
author Miles Bader <miles@gnu.org>
date Thu, 14 Oct 2004 07:33:19 +0000
parents ef5d2ed6459e
children 505c55fe8dc9 ff0e824afa37
comparison
equal deleted inserted replaced
57488:40d3f64bc0e5 57489:f7785a1e8cf8
1613 SEPARATOR is a string of characters to be used as separators. \",\" 1613 SEPARATOR is a string of characters to be used as separators. \",\"
1614 is used by default." 1614 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))
1626 (if first 1626 (if first
1627 (setq first nil) 1627 (setq first nil)