[gnus git] branch master updated: =2= (nnimap-parse-copied-articles): Allow for "<foo> OK" outputs from the server. ; * gnus-art.el (gnus-article-prepare): Run gnus-article-prepare-hook later so that bbdb can hook in easier.
Lars Ingebrigtsen <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via de7be48d498c7d1b46f4e29d817dcb1b8c749fe4 (commit)
via d28f2caa7b29f5708591729c7abf4ff76c308f2d (commit)
from 82f3e557de7ffb57fce527be64009239d084db77 (commit)
- Log -----------------------------------------------------------------
commit de7be48d498c7d1b46f4e29d817dcb1b8c749fe4
Author: Lars Ingebrigtsen <[email protected]>
Date: Sat Feb 19 01:40:02 2011 -0800
(nnimap-parse-copied-articles): Allow for "<foo> OK" outputs from the server.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 79a6f9e..c422cdb 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2011-02-19 Lars Ingebrigtsen <[email protected]>
+
+ * nnimap.el (nnimap-parse-copied-articles): Allow for "<foo> OK"
+ outputs from the server.
+
2011-02-18 Antoine Levitt <[email protected]> (tiny change)
* gnus-art.el (gnus-article-prepare): Run gnus-article-prepare-hook
diff --git a/lisp/nnimap.el b/lisp/nnimap.el
index 9c93ee8..6b726b2 100644
--- a/lisp/nnimap.el
+++ b/lisp/nnimap.el
@@ -1823,7 +1823,7 @@ textual parts.")
(defun nnimap-parse-copied-articles (sequences)
(let (sequence copied range)
(goto-char (point-min))
- (while (re-search-forward "^\\([0-9]+\\) OK " nil t)
+ (while (re-search-forward "^\\([0-9]+\\) OK\\b" nil t)
(setq sequence (string-to-number (match-string 1)))
(when (setq range (cadr (assq sequence sequences)))
(push (gnus-uncompress-range range) copied)))
commit d28f2caa7b29f5708591729c7abf4ff76c308f2d
Author: Antoine Levitt <[email protected]>
Date: Fri Feb 18 15:18:30 2011 -0800
* gnus-art.el (gnus-article-prepare): Run gnus-article-prepare-hook later so that bbdb can hook in easier.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b7d4d00..79a6f9e 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2011-02-18 Antoine Levitt <[email protected]> (tiny change)
+
+ * gnus-art.el (gnus-article-prepare): Run gnus-article-prepare-hook
+ later so that bbdb can hook in easier.
+
2011-02-18 Lars Ingebrigtsen <[email protected]>
* auth-source.el (auth-source-search): Don't try to create credentials
diff --git a/lisp/gnus-art.el b/lisp/gnus-art.el
index 82ad497..533b010 100644
--- a/lisp/gnus-art.el
+++ b/lisp/gnus-art.el
@@ -4637,6 +4637,7 @@ If ALL-HEADERS is non-nil, no headers are hidden."
(forward-line -1))
(set-window-point (get-buffer-window (current-buffer)) (point))
(gnus-configure-windows 'article)
+ (gnus-run-hooks 'gnus-article-prepare-hook)
t))))))
;;;###autoload
@@ -4654,8 +4655,7 @@ If ALL-HEADERS is non-nil, no headers are hidden."
gnus-article-image-alist nil)
(gnus-run-hooks 'gnus-tmp-internal-hook)
(when gnus-display-mime-function
- (funcall gnus-display-mime-function))
- (gnus-run-hooks 'gnus-article-prepare-hook)))
+ (funcall gnus-display-mime-function))))
;;;
;;; Gnus Sticky Article Mode
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
lisp/ChangeLog | 10 ++++++++++
lisp/gnus-art.el | 4 ++--
lisp/nnimap.el | 2 +-
3 files changed, 13 insertions(+), 3 deletions(-)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, master has been updated
hooks/post-receive
--
Gnus Project