diff options
| author | Glenn Morris | 2012-11-08 13:35:08 -0500 |
|---|---|---|
| committer | Glenn Morris | 2012-11-08 13:35:08 -0500 |
| commit | fedb154e30405ae0f4be8a582a6252a4d3eb75b5 (patch) | |
| tree | 91c1bb9471ae2865e51dbedfe319914559aa3e28 /lisp/mail | |
| parent | 9d9e48d9041bf039d873b23484301acca52972e9 (diff) | |
| download | emacs-fedb154e30405ae0f4be8a582a6252a4d3eb75b5.tar.gz emacs-fedb154e30405ae0f4be8a582a6252a4d3eb75b5.zip | |
Make report-emacs-bug-query-existing-bugs obsolete (bug#7449)
* lisp/mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
Unautoload, and make obsolete.
Diffstat (limited to 'lisp/mail')
| -rw-r--r-- | lisp/mail/emacsbug.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el index 0066847e995..a7a167d01bd 100644 --- a/lisp/mail/emacsbug.el +++ b/lisp/mail/emacsbug.el | |||
| @@ -517,7 +517,6 @@ and send the mail again%s." | |||
| 517 | buglist)))) | 517 | buglist)))) |
| 518 | (report-emacs-bug-create-existing-bugs-buffer (nreverse buglist) keywords))) | 518 | (report-emacs-bug-create-existing-bugs-buffer (nreverse buglist) keywords))) |
| 519 | 519 | ||
| 520 | ;;;###autoload | ||
| 521 | (defun report-emacs-bug-query-existing-bugs (keywords) | 520 | (defun report-emacs-bug-query-existing-bugs (keywords) |
| 522 | "Query for KEYWORDS at `report-emacs-bug-tracker-url', and return the result. | 521 | "Query for KEYWORDS at `report-emacs-bug-tracker-url', and return the result. |
| 523 | The result is an alist with items of the form (URL SUBJECT NO)." | 522 | 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)." | |||
| 527 | (replace-regexp-in-string "[[:space:]]+" "+" keywords) | 526 | (replace-regexp-in-string "[[:space:]]+" "+" keywords) |
| 528 | ";package=emacs") | 527 | ";package=emacs") |
| 529 | 'report-emacs-bug-parse-query-results (list keywords))) | 528 | 'report-emacs-bug-parse-query-results (list keywords))) |
| 529 | (make-obsolete 'report-emacs-bug-query-existing-bugs | ||
| 530 | "use the `debbugs' package from GNU ELPA instead." "24.3") | ||
| 530 | 531 | ||
| 531 | (provide 'emacsbug) | 532 | (provide 'emacsbug) |
| 532 | 533 | ||