[gnus git] branch master updated: m0-5-315-g67a1398 =1= gnus.el (gnus-list-debbugs): Use require rather than autoload (Bug#14262)
Katsumi Yamaoka <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 67a139854a6afdc140edfbeb322d4ec732f59716 (commit)
from 462da662b7ae3ce08c9dca4d9233e583aac1904e (commit)
- Log -----------------------------------------------------------------
commit 67a139854a6afdc140edfbeb322d4ec732f59716
Author: Glenn Morris <[email protected]>
Date: Sat Apr 27 23:55:54 2013 +0000
gnus.el (gnus-list-debbugs): Use require rather than autoload (Bug#14262)
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ae2b4cd..7c38ac5 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2013-04-27 Glenn Morris <[email protected]>
+
+ * gnus.el (gnus-list-debbugs):
+ Use require rather than autoload. (Bug#14262)
+
2013-04-27 Julien Danjou <[email protected]>
* sieve-manage.el (sieve-manage-authenticator-alist): Update the sieve
diff --git a/lisp/gnus.el b/lisp/gnus.el
index e87ff37..c4e6931 100644
--- a/lisp/gnus.el
+++ b/lisp/gnus.el
@@ -4434,12 +4434,13 @@ prompt the user for the name of an NNTP server to use."
(gnus-1 arg dont-connect slave)
(gnus-final-warning)))
-(eval-and-compile
- (unless (fboundp 'debbugs-gnu)
- (autoload 'debbugs-gnu "debbugs-gnu" "List all outstanding Emacs bugs." t)))
+(declare-function debbugs-gnu "ext:debbugs-gnu"
+ (severities &optional packages archivedp suppress tags))
+
(defun gnus-list-debbugs ()
"List all open Gnus bug reports."
(interactive)
+ (require 'debbugs-gnu)
(debbugs-gnu nil "gnus"))
;; Allow redefinition of Gnus functions.
-----------------------------------------------------------------------
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 | 5 +++++
lisp/gnus.el | 7 ++++---
2 files changed, 9 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