diff options
| -rw-r--r-- | lisp/gnus/ChangeLog | 11 | ||||
| -rw-r--r-- | lisp/gnus/message.el | 4 | ||||
| -rw-r--r-- | man/ChangeLog | 4 | ||||
| -rw-r--r-- | man/gnus-faq.texi | 11 |
4 files changed, 24 insertions, 6 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 @@ | |||
| 1 | 2004-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 | |||
| 6 | 2004-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 | |||
| 1 | 2004-10-10 Reiner Steib <Reiner.Steib@gmx.de> | 12 | 2004-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)) |
diff --git a/man/ChangeLog b/man/ChangeLog index 09308d99ba6..8aec01712ef 100644 --- a/man/ChangeLog +++ b/man/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2004-10-12 Reiner Steib <Reiner.Steib@gmx.de> | ||
| 2 | |||
| 3 | * gnus-faq.texi ([5.9]): Improve code for reply-in-news. | ||
| 4 | |||
| 1 | 2004-10-12 Michael Albinus <michael.albinus@gmx.de> | 5 | 2004-10-12 Michael Albinus <michael.albinus@gmx.de> |
| 2 | 6 | ||
| 3 | Sync with Tramp 2.0.45. | 7 | Sync with Tramp 2.0.45. |
diff --git a/man/gnus-faq.texi b/man/gnus-faq.texi index 6f0fddc5562..5d243f8a02e 100644 --- a/man/gnus-faq.texi +++ b/man/gnus-faq.texi | |||
| @@ -1776,11 +1776,14 @@ Answer: | |||
| 1776 | 1776 | ||
| 1777 | 1777 | ||
| 1778 | @example | 1778 | @example |
| 1779 | (defadvice gnus-summary-reply (around reply-in-news activate) | 1779 | (eval-after-load "gnus-msg" |
| 1780 | '(unless (boundp 'gnus-confirm-mail-reply-to-news) | ||
| 1781 | (defadvice gnus-summary-reply (around reply-in-news activate) | ||
| 1782 | "Request confirmation when replying to news." | ||
| 1780 | (interactive) | 1783 | (interactive) |
| 1781 | (when (or (not (gnus-news-group-p gnus-newsgroup-name)) | 1784 | (when (or (not (gnus-news-group-p gnus-newsgroup-name)) |
| 1782 | (y-or-n-p "Really reply? ")) | 1785 | (y-or-n-p "Really reply by mail to article author? ")) |
| 1783 | ad-do-it)) | 1786 | ad-do-it)))) |
| 1784 | @end example | 1787 | @end example |
| 1785 | 1788 | ||
| 1786 | @ifnottex | 1789 | @ifnottex |