diff options
Diffstat (limited to 'lisp/gnus')
| -rw-r--r-- | lisp/gnus/ChangeLog | 10 | ||||
| -rw-r--r-- | lisp/gnus/gnus-art.el | 4 | ||||
| -rw-r--r-- | lisp/gnus/gnus-msg.el | 8 |
3 files changed, 19 insertions, 3 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 918b4bd3ef3..a48bc194909 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -3,6 +3,16 @@ | |||
| 3 | * message.el (message-yank-original): Fix bug: | 3 | * message.el (message-yank-original): Fix bug: |
| 4 | Don't switch point and mark unnecessarily. | 4 | Don't switch point and mark unnecessarily. |
| 5 | 5 | ||
| 6 | 2007-03-25 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de> | ||
| 7 | |||
| 8 | * gnus-msg.el (gnus-setup-message, gnus-inews-add-send-actions): Move | ||
| 9 | evaluation of gnus-extended-version to ensure correct generation of the | ||
| 10 | User-Agent header when message-generate-headers-first is used. | ||
| 11 | |||
| 12 | 2007-03-24 Reiner Steib <Reiner.Steib@gmx.de> | ||
| 13 | |||
| 14 | * gnus-art.el (gnus-button-alist): Also catch `<f1> k ...'. | ||
| 15 | |||
| 6 | 2007-03-20 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de> | 16 | 2007-03-20 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de> |
| 7 | 17 | ||
| 8 | * message.el (message-required-news-headers): | 18 | * message.el (message-required-news-headers): |
diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el index c6ac13af6c9..552f3a68f49 100644 --- a/lisp/gnus/gnus-art.el +++ b/lisp/gnus/gnus-art.el | |||
| @@ -1332,7 +1332,7 @@ See Info node `(gnus)Customizing Articles' for details." | |||
| 1332 | (executable-find "icontopbm"))) | 1332 | (executable-find "icontopbm"))) |
| 1333 | 'head) | 1333 | 'head) |
| 1334 | "Display X-Face headers. | 1334 | "Display X-Face headers. |
| 1335 | Valid values are nil, t, `head', `last', an integer or a predicate. | 1335 | Valid values are nil and `head'. |
| 1336 | See Info node `(gnus)Customizing Articles' and Info node | 1336 | See Info node `(gnus)Customizing Articles' and Info node |
| 1337 | `(gnus)X-Face' for details." | 1337 | `(gnus)X-Face' for details." |
| 1338 | :group 'gnus-article-treat | 1338 | :group 'gnus-article-treat |
| @@ -6620,7 +6620,7 @@ positives are possible." | |||
| 6620 | 0 (>= gnus-button-emacs-level 1) gnus-button-handle-describe-function 2) | 6620 | 0 (>= gnus-button-emacs-level 1) gnus-button-handle-describe-function 2) |
| 6621 | ("\\b\\(C-h\\|<?[Ff]1>?\\)[ \t\n]+v[ \t\n]+\\([^ \t\n]+\\)[ \t\n]+RET" | 6621 | ("\\b\\(C-h\\|<?[Ff]1>?\\)[ \t\n]+v[ \t\n]+\\([^ \t\n]+\\)[ \t\n]+RET" |
| 6622 | 0 (>= gnus-button-emacs-level 1) gnus-button-handle-describe-variable 2) | 6622 | 0 (>= gnus-button-emacs-level 1) gnus-button-handle-describe-variable 2) |
| 6623 | ("`\\(\\b\\(C-h\\|<?[Ff]1>?\\)[ \t\n]+k[ \t\n]+\\([^']+\\)\\)'" | 6623 | ("`\\(\\(C-h\\|<?[Ff]1>?\\)[ \t\n]+k[ \t\n]+\\([^']+\\)\\)'" |
| 6624 | ;; Unlike the other regexps we really have to require quoting | 6624 | ;; Unlike the other regexps we really have to require quoting |
| 6625 | ;; here to determine where it ends. | 6625 | ;; here to determine where it ends. |
| 6626 | 1 (>= gnus-button-emacs-level 1) gnus-button-handle-describe-key 3) | 6626 | 1 (>= gnus-button-emacs-level 1) gnus-button-handle-describe-key 3) |
diff --git a/lisp/gnus/gnus-msg.el b/lisp/gnus/gnus-msg.el index cace5028f96..aaf30700e3d 100644 --- a/lisp/gnus/gnus-msg.el +++ b/lisp/gnus/gnus-msg.el | |||
| @@ -393,6 +393,13 @@ Thank you for your help in stamping out bugs. | |||
| 393 | (setq mml-buffer-list nil) | 393 | (setq mml-buffer-list nil) |
| 394 | (add-hook 'message-header-setup-hook 'gnus-inews-insert-gcc) | 394 | (add-hook 'message-header-setup-hook 'gnus-inews-insert-gcc) |
| 395 | (add-hook 'message-header-setup-hook 'gnus-inews-insert-archive-gcc) | 395 | (add-hook 'message-header-setup-hook 'gnus-inews-insert-archive-gcc) |
| 396 | ;; message-newsreader and message-mailer were formerly set in | ||
| 397 | ;; gnus-inews-add-send-actions, but this is too late when | ||
| 398 | ;; message-generate-headers-first is used. --ansel | ||
| 399 | (add-hook 'message-mode-hook | ||
| 400 | (lambda nil | ||
| 401 | (setq message-newsreader | ||
| 402 | (setq message-mailer (gnus-extended-version))))) | ||
| 396 | ;; #### FIXME: for a reason that I did not manage to identify yet, | 403 | ;; #### FIXME: for a reason that I did not manage to identify yet, |
| 397 | ;; the variable `gnus-newsgroup-name' does not honor a dynamically | 404 | ;; the variable `gnus-newsgroup-name' does not honor a dynamically |
| 398 | ;; scoped or setq'ed value from a caller like `C-u gnus-summary-mail'. | 405 | ;; scoped or setq'ed value from a caller like `C-u gnus-summary-mail'. |
| @@ -514,7 +521,6 @@ Gcc: header for archiving purposes." | |||
| 514 | (setq message-post-method | 521 | (setq message-post-method |
| 515 | `(lambda (arg) | 522 | `(lambda (arg) |
| 516 | (gnus-post-method arg ,gnus-newsgroup-name))) | 523 | (gnus-post-method arg ,gnus-newsgroup-name))) |
| 517 | (setq message-newsreader (setq message-mailer (gnus-extended-version))) | ||
| 518 | (message-add-action | 524 | (message-add-action |
| 519 | `(when (gnus-buffer-exists-p ,buffer) | 525 | `(when (gnus-buffer-exists-p ,buffer) |
| 520 | (set-window-configuration ,winconf)) | 526 | (set-window-configuration ,winconf)) |