diff options
| author | Miles Bader | 2008-03-01 01:29:58 +0000 |
|---|---|---|
| committer | Miles Bader | 2008-03-01 01:29:58 +0000 |
| commit | 6a3a129c14a3e1c105341f03d9128ba88583f4c8 (patch) | |
| tree | b9ea373674be233ba7343f0c2963ec52e9bbb88c /lisp | |
| parent | 613f60eeb171e5ad881f52d9e7c0ffce2e182fcb (diff) | |
| download | emacs-6a3a129c14a3e1c105341f03d9128ba88583f4c8.tar.gz emacs-6a3a129c14a3e1c105341f03d9128ba88583f4c8.zip | |
Merge from gnus--rel--5.10
Revision: emacs@sv.gnu.org/emacs--rel--22--patch-239
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/gnus/nnweb.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 870b598ff74..f5c7a68a715 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2008-02-29 Andreas Seltenreich <andreas@gate450.dyndns.org> | ||
| 2 | |||
| 3 | * nnweb.el (nnweb-google-parse-1): Fix date parsing on articles with | ||
| 4 | empty author. | ||
| 5 | |||
| 1 | 2008-02-16 Reiner Steib <Reiner.Steib@gmx.de> | 6 | 2008-02-16 Reiner Steib <Reiner.Steib@gmx.de> |
| 2 | 7 | ||
| 3 | * mail-source.el (mail-source-delete-incoming): Change default. | 8 | * mail-source.el (mail-source-delete-incoming): Change default. |
diff --git a/lisp/gnus/nnweb.el b/lisp/gnus/nnweb.el index 38cb5f9e746..30f2e5ea8da 100644 --- a/lisp/gnus/nnweb.el +++ b/lisp/gnus/nnweb.el | |||
| @@ -367,7 +367,7 @@ Valid types include `google', `dejanews', and `gmane'.") | |||
| 367 | (goto-char (point-max)) | 367 | (goto-char (point-max)) |
| 368 | (when | 368 | (when |
| 369 | (re-search-backward | 369 | (re-search-backward |
| 370 | "^\\(?:\\(\\w+\\) \\([0-9]+\\)\\|\\S-+\\)\\(?: \\([0-9]\\{4\\}\\)\\)? by \\(.*\\)" | 370 | "^\\(?:\\(\\w+\\) \\([0-9]+\\)\\|\\S-+\\)\\(?: \\([0-9]\\{4\\}\\)\\)? by ?\\(.*\\)" |
| 371 | nil t) | 371 | nil t) |
| 372 | (setq Date (if (match-string 1) | 372 | (setq Date (if (match-string 1) |
| 373 | (format "%s %s 00:00:00 %s" | 373 | (format "%s %s 00:00:00 %s" |