help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Use Debbugs to search for only open bugs


From: Michael Albinus
Subject: Re: Use Debbugs to search for only open bugs
Date: Fri, 05 Aug 2022 09:08:01 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux)

Joshua Branson <jbranso@dismail.de> writes:

Hi Joshua,

> Can anyone give my a simple debbugs function, that will prompt me for a
> search string, and return a list of open bugs for "guix" and
> "guix-patches"?
>
> Here's what I've come up with so far:
>
> #+BEGIN_SRC emacs-lisp
> (defun debbugs-guix-search ()
>   (interactive)
>   (debbugs-gnu-search (read-string "Search String: ") nil nil '("guix" 
> "guix-patches") nil))
> #+END_SRC
>
> The only problem with this function is that it shows open bug reports.
> 90% of the time I am not interested in those bug reports.

>From your description it isn't obvious to me, whether you want to see
just open bugs, or not. But you can play with the QUERY argument of
debbugs-gnu-search, like

--8<---------------cut here---------------start------------->8---
(debbugs-gnu-search (read-string "Search String: ") '((pending . "open")) nil 
'("guix" "guix-patches"))
--8<---------------cut here---------------end--------------->8---

> Thanks!

Best regards, Michael.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]