mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-03 08:30:09 +00:00
* gnus/gnus.el (gnus-list-debbugs): Use require rather than autoload.
Fixes: debbugs:14262
This commit is contained in:
parent
685c9501cd
commit
7365d35ddb
@ -1,3 +1,8 @@
|
||||
2013-04-27 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* gnus.el (gnus-list-debbugs):
|
||||
Use require rather than autoload. (Bug#14262)
|
||||
|
||||
2013-04-26 Katsumi Yamaoka <yamaoka@jpl.org>
|
||||
|
||||
* mail-source.el (mail-source-fetch-pop, mail-source-check-pop):
|
||||
|
@ -4433,12 +4433,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.
|
||||
|
Loading…
Reference in New Issue
Block a user