Make report-emacs-bug-query-existing-bugs obsolete (bug#7449)

* lisp/mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
Unautoload, and make obsolete.
This commit is contained in:
Glenn Morris 2012-11-08 13:35:08 -05:00
parent 9d9e48d904
commit fedb154e30
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2012-11-08 Glenn Morris <rgm@gnu.org>
* mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
Unautoload, and make obsolete. (Bug#7449)
2012-11-08 Chong Yidong <cyd@gnu.org>
* vc/diff-mode.el (diff-delete-trailing-whitespace): Rewrite, and

View file

@ -517,7 +517,6 @@ and send the mail again%s."
buglist))))
(report-emacs-bug-create-existing-bugs-buffer (nreverse buglist) keywords)))
;;;###autoload
(defun report-emacs-bug-query-existing-bugs (keywords)
"Query for KEYWORDS at `report-emacs-bug-tracker-url', and return the result.
The result is an alist with items of the form (URL SUBJECT NO)."
@ -527,6 +526,8 @@ The result is an alist with items of the form (URL SUBJECT NO)."
(replace-regexp-in-string "[[:space:]]+" "+" keywords)
";package=emacs")
'report-emacs-bug-parse-query-results (list keywords)))
(make-obsolete 'report-emacs-bug-query-existing-bugs
"use the `debbugs' package from GNU ELPA instead." "24.3")
(provide 'emacsbug)