unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* How to list bugs on debbugs by submitter
@ 2018-01-15 15:38 Oleg Pykhalov
  2018-01-17 14:00 ` Ludovic Courtès
  0 siblings, 1 reply; 3+ messages in thread
From: Oleg Pykhalov @ 2018-01-15 15:38 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 801 bytes --]

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 #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: How to list bugs on debbugs by submitter
  2018-01-15 15:38 How to list bugs on debbugs by submitter Oleg Pykhalov
@ 2018-01-17 14:00 ` Ludovic Courtès
  2018-01-21 22:22   ` Oleg Pykhalov
  0 siblings, 1 reply; 3+ messages in thread
From: Ludovic Courtès @ 2018-01-17 14:00 UTC (permalink / raw)
  To: Oleg Pykhalov; +Cc: guix-devel

Hello,

Oleg Pykhalov <go.wigust@gmail.com> 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’.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: How to list bugs on debbugs by submitter
  2018-01-17 14:00 ` Ludovic Courtès
@ 2018-01-21 22:22   ` Oleg Pykhalov
  0 siblings, 0 replies; 3+ messages in thread
From: Oleg Pykhalov @ 2018-01-21 22:22 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 808 bytes --]

ludo@gnu.org (Ludovic Courtès) writes:

[...]

> Very useful, thanks for sharing!

NP, I wonder should it be in the in the HACKING file still.


Another tip to open a bug report in Emacs Debbugs with M-x ffap on URL:
--8<---------------cut here---------------start------------->8---
(require 'debbugs)
(require 'debbugs-gnu)
(require 'debbugs-browse-url)

(setq browse-url-browser-function
      `((,debbugs-browse-url-regexp . debbugs-browse-url)
        ("." . browse-url-conkeror)))

;; Example: call those or M-x ffap on URLs
(debbugs-browse-url "https://bugs.gnu.org/29552")
(debbugs-browse-url "https://debbugs.gnu.org/29552")
(debbugs-browse-url "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=29552")
--8<---------------cut here---------------end--------------->8---

Oleg.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-01-21 22:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-01-15 15:38 How to list bugs on debbugs by submitter Oleg Pykhalov
2018-01-17 14:00 ` Ludovic Courtès
2018-01-21 22:22   ` Oleg Pykhalov

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).