branch: externals/debbugs
commit 4a7a8d89846eea508673f9fd3bd178817a242d6e
Author: Lars Magne Ingebrigtsen <[email protected]>
Commit: Lars Magne Ingebrigtsen <[email protected]>
Add a new command debbugs-gnu-patches
* packages/debbugs/debbugs-gnu.el (debbugs-gnu-patches): New command.
(debbugs-gnu-get-bugs): Remove the "user tags" cond -- it didn't
allow us to search for bugs with specific tags.
---
debbugs-gnu.el | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/debbugs-gnu.el b/debbugs-gnu.el
index 316a654..10a31cb 100644
--- a/debbugs-gnu.el
+++ b/debbugs-gnu.el
@@ -337,6 +337,12 @@ be empty, in this case only the following attributes are
used for
search."))
;;;###autoload
+(defun debbugs-gnu-patches ()
+ "List the bug reports that have been marked as containing a patch."
+ (interactive)
+ (debbugs-gnu nil '("emacs") nil nil "patch"))
+
+;;;###autoload
(defun debbugs-gnu-search ()
"Search for Emacs bugs interactively.
Search arguments are requested interactively. The \"search
@@ -572,10 +578,6 @@ marked as \"client-side filter\"."
(mapcar
(lambda (x) (cdr (assoc "id" x)))
(apply 'debbugs-search-est args)))
- ;; User tags.
- (tags
- (setq args (mapcar (lambda (x) (if (eq x :package) :user x)) args))
- (apply 'debbugs-get-usertag args))
;; Otherwise, we retrieve the bugs from the server.
(t (apply 'debbugs-get-bugs args)))))