diff options
| -rw-r--r-- | lisp/gnus/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/gnus/gnus-diary.el | 8 | ||||
| -rw-r--r-- | lisp/gnus/message.el | 5 | ||||
| -rw-r--r-- | lisp/gnus/nnbabyl.el | 2 | ||||
| -rw-r--r-- | lisp/gnus/nndiary.el | 6 |
5 files changed, 18 insertions, 11 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 7a140a5ee65..5b1a9e9e9e0 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2009-09-18 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * gnus-diary.el (gnus-diary-check-message): | ||
| 4 | * message.el (message-insert-formatted-citation-line): | ||
| 5 | * nnbabyl.el (top-level): | ||
| 6 | * nndiary.el (nndiary-schedule): | ||
| 7 | Fix typos in condition-case handlers. | ||
| 8 | |||
| 1 | 2009-09-10 Katsumi Yamaoka <yamaoka@jpl.org> | 9 | 2009-09-10 Katsumi Yamaoka <yamaoka@jpl.org> |
| 2 | 10 | ||
| 3 | * nnrss.el (nnrss-request-article): Remove binding of | 11 | * nnrss.el (nnrss-request-article): Remove binding of |
diff --git a/lisp/gnus/gnus-diary.el b/lisp/gnus/gnus-diary.el index 630066afafa..7ec4c6735b4 100644 --- a/lisp/gnus/gnus-diary.el +++ b/lisp/gnus/gnus-diary.el | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | ;;; gnus-diary.el --- Wrapper around the NNDiary Gnus back end | 1 | ;;; gnus-diary.el --- Wrapper around the NNDiary Gnus back end |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, | 3 | ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, |
| 4 | ;; 2006, 2007, 2008, 2009 Free Software Foundation, Inc. | 4 | ;; 2008, 2009 Free Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | ;; Author: Didier Verna <didier@xemacs.org> | 6 | ;; Author: Didier Verna <didier@xemacs.org> |
| 7 | ;; Maintainer: Didier Verna <didier@xemacs.org> | 7 | ;; Maintainer: Didier Verna <didier@xemacs.org> |
| @@ -351,7 +351,7 @@ If ARG (or prefix) is non-nil, force prompting for all fields." | |||
| 351 | (condition-case () | 351 | (condition-case () |
| 352 | (nndiary-parse-schedule-value value | 352 | (nndiary-parse-schedule-value value |
| 353 | (nth 1 head) (nth 2 head)) | 353 | (nth 1 head) (nth 2 head)) |
| 354 | (t | 354 | (error |
| 355 | (setq invalid t))) | 355 | (setq invalid t))) |
| 356 | ;; #### NOTE: this (along with the `gnus-diary-add-header' | 356 | ;; #### NOTE: this (along with the `gnus-diary-add-header' |
| 357 | ;; function) could be rewritten in a better way, in particular | 357 | ;; function) could be rewritten in a better way, in particular |
| @@ -378,7 +378,7 @@ If ARG (or prefix) is non-nil, force prompting for all fields." | |||
| 378 | (condition-case () | 378 | (condition-case () |
| 379 | (nndiary-parse-schedule-value value | 379 | (nndiary-parse-schedule-value value |
| 380 | (nth 1 head) (nth 2 head)) | 380 | (nth 1 head) (nth 2 head)) |
| 381 | (t | 381 | (error |
| 382 | (setq invalid t)))) | 382 | (setq invalid t)))) |
| 383 | (gnus-diary-add-header (concat header ": " value)) | 383 | (gnus-diary-add-header (concat header ": " value)) |
| 384 | )) | 384 | )) |
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el index 3c465b1a89b..e5d4d3a4464 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el | |||
| @@ -3822,9 +3822,8 @@ See `message-citation-line-format'." | |||
| 3822 | (>= i ?a))) | 3822 | (>= i ?a))) |
| 3823 | (push i lst) | 3823 | (push i lst) |
| 3824 | (push (condition-case nil | 3824 | (push (condition-case nil |
| 3825 | (progn (format-time-string (format "%%%c" i) | 3825 | (format-time-string (format "%%%c" i) replydate) |
| 3826 | replydate)) | 3826 | (error (format ">%c<" i))) |
| 3827 | (format ">%c<" i)) | ||
| 3828 | lst)) | 3827 | lst)) |
| 3829 | (setq i (1+ i))) | 3828 | (setq i (1+ i))) |
| 3830 | (reverse lst))) | 3829 | (reverse lst))) |
diff --git a/lisp/gnus/nnbabyl.el b/lisp/gnus/nnbabyl.el index 2b9b1e5f30c..40863454518 100644 --- a/lisp/gnus/nnbabyl.el +++ b/lisp/gnus/nnbabyl.el | |||
| @@ -32,7 +32,7 @@ | |||
| 32 | (require 'nnheader) | 32 | (require 'nnheader) |
| 33 | (condition-case nil | 33 | (condition-case nil |
| 34 | (require 'rmail) | 34 | (require 'rmail) |
| 35 | (t (nnheader-message | 35 | (error (nnheader-message |
| 36 | 5 "Ignore rmail errors from this file, you don't have rmail"))) | 36 | 5 "Ignore rmail errors from this file, you don't have rmail"))) |
| 37 | (require 'nnmail) | 37 | (require 'nnmail) |
| 38 | (require 'nnoo) | 38 | (require 'nnoo) |
diff --git a/lisp/gnus/nndiary.el b/lisp/gnus/nndiary.el index 9ba8e37942e..c6821b0f8db 100644 --- a/lisp/gnus/nndiary.el +++ b/lisp/gnus/nndiary.el | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | ;;; nndiary.el --- A diary back end for Gnus | 1 | ;;; nndiary.el --- A diary back end for Gnus |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, | 3 | ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, |
| 4 | ;; 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. | 4 | ;; 2008, 2009 Free Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | ;; Author: Didier Verna <didier@xemacs.org> | 6 | ;; Author: Didier Verna <didier@xemacs.org> |
| 7 | ;; Maintainer: Didier Verna <didier@xemacs.org> | 7 | ;; Maintainer: Didier Verna <didier@xemacs.org> |
| @@ -368,7 +368,7 @@ all. This may very well take some time.") | |||
| 368 | (setq head (nth 0 elt)) | 368 | (setq head (nth 0 elt)) |
| 369 | (nndiary-parse-schedule (nth 0 elt) (nth 1 elt) (nth 2 elt))) | 369 | (nndiary-parse-schedule (nth 0 elt) (nth 1 elt) (nth 2 elt))) |
| 370 | nndiary-headers) | 370 | nndiary-headers) |
| 371 | (t | 371 | (error |
| 372 | (nnheader-report 'nndiary "X-Diary-%s header parse error: %s." | 372 | (nnheader-report 'nndiary "X-Diary-%s header parse error: %s." |
| 373 | head (cdr arg)) | 373 | head (cdr arg)) |
| 374 | nil)) | 374 | nil)) |