diff options
| -rw-r--r-- | lisp/gnus/ChangeLog | 19 | ||||
| -rw-r--r-- | lisp/gnus/gnus-agent.el | 2 | ||||
| -rw-r--r-- | lisp/gnus/mm-url.el | 2 | ||||
| -rw-r--r-- | lisp/gnus/spam-report.el | 2 | ||||
| -rw-r--r-- | man/ChangeLog | 4 | ||||
| -rw-r--r-- | man/gnus.texi | 12 |
6 files changed, 34 insertions, 7 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index b878be500bb..44675cdacd0 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -20,6 +20,25 @@ | |||
| 20 | * message.el (message-check-news-header-syntax): | 20 | * message.el (message-check-news-header-syntax): |
| 21 | Follow convention for reading with the minibuffer. | 21 | Follow convention for reading with the minibuffer. |
| 22 | 22 | ||
| 23 | 2005-09-22 Reiner Steib <Reiner.Steib@gmx.de> | ||
| 24 | |||
| 25 | * spam-report.el (spam-report-url-ping-plain): Use | ||
| 26 | gnus-extended-version as User-Agent. | ||
| 27 | |||
| 28 | * gnus-agent.el (gnus-agent-synchronize-flags): Explain why the | ||
| 29 | default value is nil. | ||
| 30 | |||
| 31 | 2005-09-20 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 32 | |||
| 33 | * gnus-agent.el (gnus-agent-synchronize-flags): Switch the | ||
| 34 | default to nil, to be able to use Gnus at all. If the default | ||
| 35 | switches to something else, then the function should be fixed not | ||
| 36 | be exceedingly slow. | ||
| 37 | |||
| 38 | 2005-09-19 Reiner Steib <Reiner.Steib@gmx.de> | ||
| 39 | |||
| 40 | * mm-url.el (mm-url-decode-entities): Fix regexp. | ||
| 41 | |||
| 23 | 2005-09-18 D Goel <deego@gnufans.org> | 42 | 2005-09-18 D Goel <deego@gnufans.org> |
| 24 | 43 | ||
| 25 | * sieve.el (sieve-help): Fix `message' call: first arg should be a | 44 | * sieve.el (sieve-help): Fix `message' call: first arg should be a |
diff --git a/lisp/gnus/gnus-agent.el b/lisp/gnus/gnus-agent.el index 0d024d06e11..0357ddd18cb 100644 --- a/lisp/gnus/gnus-agent.el +++ b/lisp/gnus/gnus-agent.el | |||
| @@ -118,6 +118,8 @@ If nil, only read articles will be expired." | |||
| 118 | (defcustom gnus-agent-synchronize-flags t | 118 | (defcustom gnus-agent-synchronize-flags t |
| 119 | "Indicate if flags are synchronized when you plug in. | 119 | "Indicate if flags are synchronized when you plug in. |
| 120 | If this is `ask' the hook will query the user." | 120 | If this is `ask' the hook will query the user." |
| 121 | ;; If the default switches to something else than nil, then the function | ||
| 122 | ;; should be fixed not be exceedingly slow. See 2005-09-20 ChangeLog entry. | ||
| 121 | :version "21.1" | 123 | :version "21.1" |
| 122 | :type '(choice (const :tag "Always" t) | 124 | :type '(choice (const :tag "Always" t) |
| 123 | (const :tag "Never" nil) | 125 | (const :tag "Never" nil) |
diff --git a/lisp/gnus/mm-url.el b/lisp/gnus/mm-url.el index 961ee0ea4fb..4fd39e477f6 100644 --- a/lisp/gnus/mm-url.el +++ b/lisp/gnus/mm-url.el | |||
| @@ -365,7 +365,7 @@ If FOLLOW-REFRESH is non-nil, redirect refresh url in META." | |||
| 365 | (defun mm-url-decode-entities () | 365 | (defun mm-url-decode-entities () |
| 366 | "Decode all HTML entities." | 366 | "Decode all HTML entities." |
| 367 | (goto-char (point-min)) | 367 | (goto-char (point-min)) |
| 368 | (while (re-search-forward "&\\(#[0-9]+\\|[a-z]+\\);" nil t) | 368 | (while (re-search-forward "&\\(#[0-9]+\\|[a-z]+[0-9]*\\);" nil t) |
| 369 | (let ((elem (if (eq (aref (match-string 1) 0) ?\#) | 369 | (let ((elem (if (eq (aref (match-string 1) 0) ?\#) |
| 370 | (let ((c | 370 | (let ((c |
| 371 | (string-to-number (substring | 371 | (string-to-number (substring |
diff --git a/lisp/gnus/spam-report.el b/lisp/gnus/spam-report.el index 173306ec55e..293a41d7b60 100644 --- a/lisp/gnus/spam-report.el +++ b/lisp/gnus/spam-report.el | |||
| @@ -150,7 +150,7 @@ the function specified by `spam-report-url-ping-function'." | |||
| 150 | (process-send-string | 150 | (process-send-string |
| 151 | tcp-connection | 151 | tcp-connection |
| 152 | (format "GET %s HTTP/1.1\nUser-Agent: %s (spam-report.el)\nHost: %s\n\n" | 152 | (format "GET %s HTTP/1.1\nUser-Agent: %s (spam-report.el)\nHost: %s\n\n" |
| 153 | report (gnus-emacs-version) host))))) | 153 | report (gnus-extended-version) host))))) |
| 154 | 154 | ||
| 155 | ;;;###autoload | 155 | ;;;###autoload |
| 156 | (defun spam-report-process-queue (&optional file keep) | 156 | (defun spam-report-process-queue (&optional file keep) |
diff --git a/man/ChangeLog b/man/ChangeLog index 442c575134a..ee31882a963 100644 --- a/man/ChangeLog +++ b/man/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2005-09-22 Katsumi Yamaoka <yamaoka@jpl.org> | ||
| 2 | |||
| 3 | * gnus.texi (Mail): Fix gnus-confirm-mail-reply-to-news entry. | ||
| 4 | |||
| 1 | 2005-09-20 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change) | 5 | 2005-09-20 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change) |
| 2 | 6 | ||
| 3 | * text.texi (Paragraphs): Correction about Paragraph-Indent Text mode. | 7 | * text.texi (Paragraphs): Correction about Paragraph-Indent Text mode. |
diff --git a/man/gnus.texi b/man/gnus.texi index df3b4bf706b..c6b11716ba0 100644 --- a/man/gnus.texi +++ b/man/gnus.texi | |||
| @@ -11431,13 +11431,15 @@ that have none when you do a @kbd{a}. | |||
| 11431 | 11431 | ||
| 11432 | @item gnus-confirm-mail-reply-to-news | 11432 | @item gnus-confirm-mail-reply-to-news |
| 11433 | @vindex gnus-confirm-mail-reply-to-news | 11433 | @vindex gnus-confirm-mail-reply-to-news |
| 11434 | This can also be a function receiving the group name as the only | 11434 | If non-@code{nil}, Gnus will ask you for a confirmation when you are |
| 11435 | parameter which should return non-@code{nil} if a confirmation is | 11435 | about to reply to news articles by mail. If it is @code{nil}, nothing |
| 11436 | needed, or a regular expression matching group names, where | 11436 | interferes in what you want to do. This can also be a function |
| 11437 | confirmation is should be asked for. | 11437 | receiving the group name as the only parameter which should return |
| 11438 | non-@code{nil} if a confirmation is needed, or a regular expression | ||
| 11439 | matching group names, where confirmation should be asked for. | ||
| 11438 | 11440 | ||
| 11439 | If you find yourself never wanting to reply to mail, but occasionally | 11441 | If you find yourself never wanting to reply to mail, but occasionally |
| 11440 | press R anyway, this variable might be for you. | 11442 | press @kbd{R} anyway, this variable might be for you. |
| 11441 | 11443 | ||
| 11442 | @item gnus-confirm-treat-mail-like-news | 11444 | @item gnus-confirm-treat-mail-like-news |
| 11443 | @vindex gnus-confirm-treat-mail-like-news | 11445 | @vindex gnus-confirm-treat-mail-like-news |