[gnus git] branch master updated: m0-3-159-g15f52af =1= gnus.el (debbugs-gnu): Don't override existing autoload definition
Katsumi Yamaoka <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 15f52af8442c9844de0c382fcd3281f551d8733b (commit)
from 9679f7609e3e122e5a59a46a8379644ef2f06dcb (commit)
- Log -----------------------------------------------------------------
commit 15f52af8442c9844de0c382fcd3281f551d8733b
Author: Andreas Schwab <[email protected]>
Date: Fri Apr 27 06:04:53 2012 +0000
gnus.el (debbugs-gnu): Don't override existing autoload definition
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e472f33..cdfb291 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2012-04-27 Andreas Schwab <[email protected]>
+
+ * gnus.el (debbugs-gnu): Don't override existing autoload definition.
+
2012-04-26 Daiki Ueno <[email protected]>
* plstore.el (plstore-called-interactively-p): New compat macro copied
diff --git a/lisp/gnus.el b/lisp/gnus.el
index 4d2e6cd..0388139 100644
--- a/lisp/gnus.el
+++ b/lisp/gnus.el
@@ -4401,7 +4401,9 @@ prompt the user for the name of an NNTP server to use."
(gnus-1 arg dont-connect slave)
(gnus-final-warning)))
-(autoload 'debbugs-gnu "debbugs-gnu")
+(eval-and-compile
+ (unless (fboundp 'debbugs-gnu)
+ (autoload 'debbugs-gnu "debbugs-gnu" "List all outstanding Emacs bugs." t)))
(defun gnus-list-debbugs ()
"List all open Gnus bug reports."
(interactive)
-----------------------------------------------------------------------
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 | 4 ++++
lisp/gnus.el | 4 +++-
2 files changed, 7 insertions(+), 1 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