diff options
| author | Miles Bader | 2005-04-05 04:10:27 +0000 |
|---|---|---|
| committer | Miles Bader | 2005-04-05 04:10:27 +0000 |
| commit | 498063ecdd75096b731b8ccde8c7f15068de0eae (patch) | |
| tree | 19d80a163e96d1ccb2f5ece94de1a03c36170fd2 /lisp | |
| parent | bf7bae80d797472fc05bd12ac4962085f4e18d74 (diff) | |
| download | emacs-498063ecdd75096b731b8ccde8c7f15068de0eae.tar.gz emacs-498063ecdd75096b731b8ccde8c7f15068de0eae.zip | |
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-234
Merge from gnus--rel--5.10
Patches applied:
* gnus--rel--5.10 (patch 56-58)
- Update from CVS
- Collapse feature addition/removal within single ChangeLog entry
2005-04-04 Reiner Steib <Reiner.Steib@gmx.de>
* lisp/gnus/message.el (message-make-date): Add defvars in order to silence
the byte compiler inside the defun.
* lisp/gnus/nnimap.el (nnimap-date-days-ago): Ditto.
* lisp/gnus/gnus-demon.el (parse-time-string): Added autoload.
* lisp/gnus/gnus-delay.el (parse-time-string): Added autoload.
* lisp/gnus/gnus-art.el (parse-time-string): Added autoload.
* lisp/gnus/nnultimate.el (parse-time): Require for `parse-time-string'.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/gnus/ChangeLog | 19 | ||||
| -rw-r--r-- | lisp/gnus/gnus-art.el | 1 | ||||
| -rw-r--r-- | lisp/gnus/gnus-delay.el | 1 | ||||
| -rw-r--r-- | lisp/gnus/gnus-demon.el | 2 | ||||
| -rw-r--r-- | lisp/gnus/message.el | 2 | ||||
| -rw-r--r-- | lisp/gnus/nnimap.el | 2 | ||||
| -rw-r--r-- | lisp/gnus/nnultimate.el | 1 |
7 files changed, 26 insertions, 2 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index b19598eb3ab..14c47ab1f30 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,7 +1,22 @@ | |||
| 1 | 2005-04-04 Reiner Steib <Reiner.Steib@gmx.de> | ||
| 2 | |||
| 3 | * message.el (message-make-date): Add defvars in order to silence | ||
| 4 | the byte compiler inside the defun. | ||
| 5 | |||
| 6 | * nnimap.el (nnimap-date-days-ago): Ditto. | ||
| 7 | |||
| 8 | * gnus-demon.el (parse-time-string): Added autoload. | ||
| 9 | |||
| 10 | * gnus-delay.el (parse-time-string): Added autoload. | ||
| 11 | |||
| 12 | * gnus-art.el (parse-time-string): Added autoload. | ||
| 13 | |||
| 14 | * nnultimate.el (parse-time): Require for `parse-time-string'. | ||
| 15 | |||
| 1 | 2005-04-03 Katsumi Yamaoka <yamaoka@jpl.org> | 16 | 2005-04-03 Katsumi Yamaoka <yamaoka@jpl.org> |
| 2 | 17 | ||
| 3 | * gnus-sum.el (gnus-summary-make-menu-bar): Fix an | 18 | * gnus-sum.el (gnus-summary-make-menu-bar): Avoid the |
| 4 | "unrecognised menu descriptor" error. | 19 | "Unrecognized menu descriptor" error in XEmacs. |
| 5 | 20 | ||
| 6 | 2005-03-25 Katsumi Yamaoka <yamaoka@jpl.org> | 21 | 2005-03-25 Katsumi Yamaoka <yamaoka@jpl.org> |
| 7 | 22 | ||
diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el index ff04bfbb56f..9d09e58fd31 100644 --- a/lisp/gnus/gnus-art.el +++ b/lisp/gnus/gnus-art.el | |||
| @@ -46,6 +46,7 @@ | |||
| 46 | (autoload 'gnus-msg-mail "gnus-msg" nil t) | 46 | (autoload 'gnus-msg-mail "gnus-msg" nil t) |
| 47 | (autoload 'gnus-button-mailto "gnus-msg") | 47 | (autoload 'gnus-button-mailto "gnus-msg") |
| 48 | (autoload 'gnus-button-reply "gnus-msg" nil t) | 48 | (autoload 'gnus-button-reply "gnus-msg" nil t) |
| 49 | (autoload 'parse-time-string "parse-time" nil nil) | ||
| 49 | 50 | ||
| 50 | (defgroup gnus-article nil | 51 | (defgroup gnus-article nil |
| 51 | "Article display." | 52 | "Article display." |
diff --git a/lisp/gnus/gnus-delay.el b/lisp/gnus/gnus-delay.el index acf7670b0ed..e0c673d1bf8 100644 --- a/lisp/gnus/gnus-delay.el +++ b/lisp/gnus/gnus-delay.el | |||
| @@ -37,6 +37,7 @@ | |||
| 37 | 37 | ||
| 38 | (require 'nndraft) | 38 | (require 'nndraft) |
| 39 | (require 'gnus-draft) | 39 | (require 'gnus-draft) |
| 40 | (autoload 'parse-time-string "parse-time" nil nil) | ||
| 40 | 41 | ||
| 41 | ;;;###autoload | 42 | ;;;###autoload |
| 42 | (defgroup gnus-delay nil | 43 | (defgroup gnus-delay nil |
diff --git a/lisp/gnus/gnus-demon.el b/lisp/gnus/gnus-demon.el index 8d2018a0048..dbb9d82ba5f 100644 --- a/lisp/gnus/gnus-demon.el +++ b/lisp/gnus/gnus-demon.el | |||
| @@ -40,6 +40,8 @@ | |||
| 40 | (require 'itimer) | 40 | (require 'itimer) |
| 41 | (require 'timer))) | 41 | (require 'timer))) |
| 42 | 42 | ||
| 43 | (autoload 'parse-time-string "parse-time" nil nil) | ||
| 44 | |||
| 43 | (defgroup gnus-demon nil | 45 | (defgroup gnus-demon nil |
| 44 | "Demonic behaviour." | 46 | "Demonic behaviour." |
| 45 | :group 'gnus) | 47 | :group 'gnus) |
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el index 9edbce2620e..0722ec1177b 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el | |||
| @@ -4568,6 +4568,8 @@ Otherwise, generate and save a value for `canlock-password' first." | |||
| 4568 | "Make a valid data header. | 4568 | "Make a valid data header. |
| 4569 | If NOW, use that time instead." | 4569 | If NOW, use that time instead." |
| 4570 | (require 'parse-time) | 4570 | (require 'parse-time) |
| 4571 | (defvar parse-time-weekdays) | ||
| 4572 | (defvar parse-time-months) | ||
| 4571 | (let* ((now (or now (current-time))) | 4573 | (let* ((now (or now (current-time))) |
| 4572 | (zone (nth 8 (decode-time now))) | 4574 | (zone (nth 8 (decode-time now))) |
| 4573 | (sign "+")) | 4575 | (sign "+")) |
diff --git a/lisp/gnus/nnimap.el b/lisp/gnus/nnimap.el index 06bc1d76134..d7cec7a864f 100644 --- a/lisp/gnus/nnimap.el +++ b/lisp/gnus/nnimap.el | |||
| @@ -1388,6 +1388,8 @@ function is generally only called when Gnus is shutting down." | |||
| 1388 | 1388 | ||
| 1389 | (defun nnimap-date-days-ago (daysago) | 1389 | (defun nnimap-date-days-ago (daysago) |
| 1390 | "Return date, in format \"3-Aug-1998\", for DAYSAGO days ago." | 1390 | "Return date, in format \"3-Aug-1998\", for DAYSAGO days ago." |
| 1391 | (require 'parse-time) | ||
| 1392 | (defvar parse-time-months) | ||
| 1391 | (let* ((time (nnimap-time-substract (current-time) (days-to-time daysago))) | 1393 | (let* ((time (nnimap-time-substract (current-time) (days-to-time daysago))) |
| 1392 | (date (format-time-string | 1394 | (date (format-time-string |
| 1393 | (format "%%d-%s-%%Y" | 1395 | (format "%%d-%s-%%Y" |
diff --git a/lisp/gnus/nnultimate.el b/lisp/gnus/nnultimate.el index b785e49af52..42fbc13a6ff 100644 --- a/lisp/gnus/nnultimate.el +++ b/lisp/gnus/nnultimate.el | |||
| @@ -39,6 +39,7 @@ | |||
| 39 | (require 'mm-util) | 39 | (require 'mm-util) |
| 40 | (require 'mm-url) | 40 | (require 'mm-url) |
| 41 | (require 'nnweb) | 41 | (require 'nnweb) |
| 42 | (require 'parse-time) | ||
| 42 | (autoload 'w3-parse-buffer "w3-parse") | 43 | (autoload 'w3-parse-buffer "w3-parse") |
| 43 | 44 | ||
| 44 | (nnoo-declare nnultimate) | 45 | (nnoo-declare nnultimate) |