guix-devel
[Top][All Lists]
Advanced

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

How to list bugs on debbugs by submitter


From: Oleg Pykhalov
Subject: How to list bugs on debbugs by submitter
Date: Mon, 15 Jan 2018 18:38:14 +0300

Hello Guix,

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:

--8<---------------cut here---------------start------------->8---
(defun debbugs-gnu-my ()
  (interactive)
  (let ((debbugs-gnu-current-query `((submitter . ,user-mail-address))))
    (debbugs-gnu nil)))
--8<---------------cut here---------------end--------------->8---

Be sure user-mail-address is set properly:

    (setq user-mail-address "YOUR-EMAIL")

Then you could evaluate it with M-x debbugs-gnu-my

Maybe we should have this function snippet in HACKING or documentation?


Oleg.

Attachment: signature.asc
Description: PGP signature


reply via email to

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