From mboxrd@z Thu Jan 1 00:00:00 1970 From: myglc2 Subject: Re: List all open bug reports with emacs-debbugs Date: Fri, 18 Aug 2017 08:25:17 -0400 Message-ID: <86bmndt64y.fsf@gmail.com> References: <5da6528d.AEAAOhJe6A0AAAAAAAAAAAPHPkIAAAACwQwAAAAAAAW9WABZllTi@mailjet.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60553) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1digL6-0005ot-Nd for help-guix@gnu.org; Fri, 18 Aug 2017 08:25:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1digL2-00059f-QY for help-guix@gnu.org; Fri, 18 Aug 2017 08:25:24 -0400 Received: from mail-qt0-x233.google.com ([2607:f8b0:400d:c0d::233]:38032) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1digL2-00059U-MG for help-guix@gnu.org; Fri, 18 Aug 2017 08:25:20 -0400 Received: by mail-qt0-x233.google.com with SMTP id t37so52541171qtg.5 for ; Fri, 18 Aug 2017 05:25:19 -0700 (PDT) In-Reply-To: <5da6528d.AEAAOhJe6A0AAAAAAAAAAAPHPkIAAAACwQwAAAAAAAW9WABZllTi@mailjet.com> (Arun Isaac's message of "Fri, 18 Aug 2017 08:15:23 +0530") List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: Arun Isaac Cc: help-guix@gnu.org On 08/18/2017 at 08:15 Arun Isaac writes: > How do I list all open bug reports for guix-patches with emacs-debbugs? > > I'm sorry I'm unable to figure this out by myself. But, debbugs and > emacs-debbugs are confusing at times. > > Thanks, > Arun. I was confused too. Ended up with this in my emacs init file ... (defun view-guix-bugs () "view guix bugs." (interactive) ;; (debbugs-gnu SEVERITIES &optional PACKAGES ARCHIVEDP SUPPRESS TAGS) (debbugs-gnu nil "guix" nil nil nil) ) (global-set-key "\C-cd" 'view-guix-bugs) HTH - George