Merge from emacs--devo--0, emacs--rel--22
authorMiles Bader <miles@gnu.org>
Thu, 5 Jun 2008 06:23:11 +0000 (06:23 +0000)
committerMiles Bader <miles@gnu.org>
Thu, 5 Jun 2008 06:23:11 +0000 (06:23 +0000)
Patches applied:

 * emacs--devo--0  (patch 1172, 1175-1176, 1178, 1186, 1192, 1199, 1212)

   - Merge from gnus--devo--0
   - Update from CVS

 * emacs--rel--22  (patch 272)

   - Merge from gnus--rel--5.10

2008-06-03  Glenn Morris  <rgm@gnu.org>

   * lisp/pop3.el (nnheader-accept-process-output): Autoload it.

2008-05-27  Chong Yidong  <cyd@stupidchicken.com>

   * lisp/parse-time.el (parse-time-months, parse-time-weekdays): Add
   long-form month and day names.

Revision: emacs@sv.gnu.org/gnus--devo--0--patch-506

lisp/ChangeLog
lisp/ChangeLog.2
lisp/html2text.el
lisp/parse-time.el
lisp/pop3.el
texi/gnus-news.el

index 8b9c71c..df63d63 100644 (file)
@@ -2,6 +2,10 @@
 
        * message.el (message-disassociate-draft): Revert 2008-03-18 change.
 
+2008-06-03  Glenn Morris  <rgm@gnu.org>
+
+       * pop3.el (nnheader-accept-process-output): Autoload it.
+
 2008-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * rfc2231.el (rfc2231-decode-encoded-string): Don't decode things that
        Improve custom options.
        (message-bogus-recipient-p): Adjust accordingly.
 
+2008-05-27  Chong Yidong  <cyd@stupidchicken.com>
+
+       * parse-time.el (parse-time-months, parse-time-weekdays): Add
+       long-form month and day names.
+
 2008-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * dgnushack.el: Autoload debug, eudc-expand-inline and
index c1add01..e31ea99 100644 (file)
        the last successful check; this was seen as a cleaner approach
        than returning a cell like '(spam spam-use-bogofilter).
        (spam-list-of-checks): Documentation appended.
-       (spam-split): Accomodate the spam-split-symbolic-return and
+       (spam-split): Accommodate the spam-split-symbolic-return and
        spam-split-symbolic-return-positive variables.
        (spam-find-spam): New function called when the summary is built.
        (spam-log-registered-p): Checks if a ham or spam registration has
        data.
        (gnus-registry-minimum-subject-length): Minimum subject length
        before it's considered when tracing subjects.
-       (gnus-registry-save): Accomodate extra data entry caching.
+       (gnus-registry-save): Accommodate extra data entry caching.
        (gnus-registry-action): Change function name, add the subject and
        pass it to gnus-registry-add-group.
        (gnus-registry-spool-action): Change function name, add the
        (gnus-agent-read-agentview): New function, used by
        gnus-agent-load-alist.
        (gnus-agent-load-fetched-headers): Remove.
-       (gnus-agent-save-alist): Rewrite to accomodate new format.
+       (gnus-agent-save-alist): Rewrite to accommodate new format.
        (gnus-agent-fetch-group-1): Make sure list of articles is in the
        same order as in gnus-newsgroup-headers.
        (gnus-agent-expire): Document and implement extra args ARTICLES,
index 3117b28..d21dd2f 100644 (file)
@@ -386,7 +386,7 @@ formatting, and then moved afterward.")
        (forward-line 1)
        (end-of-line)
        ;; refill-stop should ideally be adjusted to
-       ;; accomodate the "<br>" strings which are removed
+       ;; accommodate the "<br>" strings which are removed
        ;; between refill-start and refill-stop.  Can simply
        ;; be returned from my-replace-string
        (setq refill-stop (+ (point)
index e6bac89..59530dc 100644 (file)
 (defvar parse-time-months '(("jan" . 1) ("feb" . 2) ("mar" . 3)
                            ("apr" . 4) ("may" . 5) ("jun" . 6)
                            ("jul" . 7) ("aug" . 8) ("sep" . 9)
-                           ("oct" . 10) ("nov" . 11) ("dec" . 12)))
+                           ("oct" . 10) ("nov" . 11) ("dec" . 12)
+                           ("january" . 1) ("february" . 2)
+                           ("march" . 3) ("april" . 4) ("june" . 6)
+                           ("july" . 7) ("august" . 8)
+                           ("september" . 9) ("october" . 10)
+                           ("november" . 11) ("december" . 12)))
 (defvar parse-time-weekdays '(("sun" . 0) ("mon" . 1) ("tue" . 2)
-                             ("wed" . 3) ("thu" . 4) ("fri" . 5) ("sat" . 6)))
+                             ("wed" . 3) ("thu" . 4) ("fri" . 5)
+                             ("sat" . 6) ("sunday" . 0) ("monday" . 1)
+                             ("tuesday" . 2) ("wednesday" . 3)
+                             ("thursday" . 4) ("friday" . 5)
+                             ("saturday" . 6)))
 (defvar parse-time-zoneinfo `(("z" 0) ("ut" 0) ("gmt" 0)
                              ("pst" ,(* -8 3600)) ("pdt" ,(* -7 3600) t)
                              ("mst" ,(* -7 3600)) ("mdt" ,(* -6 3600) t)
index 8f5132c..64d338e 100644 (file)
@@ -131,6 +131,8 @@ Shorter values mean quicker response, but are more CPU intensive.")
                   (truncate pop3-read-timeout))
                1000))))
 
+(autoload 'nnheader-accept-process-output "nnheader")
+
 (defun pop3-movemail (&optional crashbox)
   "Transfer contents of a maildrop to the specified CRASHBOX."
   (or crashbox (setq crashbox (expand-file-name "~/.crashbox")))
index aa02c31..339c219 100644 (file)
@@ -44,7 +44,7 @@ This file is part of GNU Emacs.
 GNU Emacs is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation, either version 3 of the License, or
-(at your option) any later version.
+\(at your option) any later version.
 
 GNU Emacs is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of