[gnus git] branch no-gnus updated: m0-1-50-g58481ec =1= Fix build error in last checkin
Lars Ingebrigtsen <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 58481ec7113c8d83cc3d48da88b85131ea1b9f88 (commit)
from 6601a8e23b9510d6e6f50a350117ddc42db9e361 (commit)
- Log -----------------------------------------------------------------
commit 58481ec7113c8d83cc3d48da88b85131ea1b9f88
Author: Lars Ingebrigtsen <[email protected]>
Date: Sun Feb 12 20:49:44 2012 +0100
Fix build error in last checkin
diff --git a/lisp/gnus-art.el b/lisp/gnus-art.el
index 8fa50df..048f895 100644
--- a/lisp/gnus-art.el
+++ b/lisp/gnus-art.el
@@ -45,7 +45,6 @@
(require 'mm-uu)
(require 'message)
(require 'mouse)
-(require 'url-queue)
(autoload 'gnus-msg-mail "gnus-msg" nil t)
(autoload 'gnus-button-mailto "gnus-msg")
@@ -4584,7 +4583,8 @@ commands:
(cancel-timer timer))))
(defun gnus-stop-downloads ()
- (setq url-queue nil))
+ (when (boundp 'url-queue)
+ (set (intern "url-queue" obarray) nil)))
;; Set article window start at LINE, where LINE is the number of lines
;; from the head of the article.
-----------------------------------------------------------------------
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/gnus-art.el | 4 ++--
1 files changed, 2 insertions(+), 2 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, no-gnus has been updated
hooks/post-receive
--
Gnus Project