[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: How to list bugs on debbugs by submitter
From: |
Ludovic Courtès |
Subject: |
Re: How to list bugs on debbugs by submitter |
Date: |
Wed, 17 Jan 2018 15:00:08 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux) |
Hello,
Oleg Pykhalov <address@hidden> skribis:
> I want to share a quick hack with you about how to list bug reports on
> debbugs by submitter (your reports) with emacs-debbugs.
>
> You could do it interactively by evaluting:
>
> (debbugs-gnu-search) RET submitter RET YOUR-EMAIL RET
>
>
> Also you could define a function to type it automatically like:
>
> (defun debbugs-gnu-my ()
> (interactive)
> (let ((debbugs-gnu-current-query `((submitter . ,user-mail-address))))
> (debbugs-gnu nil)))
Very useful, thanks for sharing!
Ludo’.