From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Albinus Subject: Re: org-debbugs.el Date: Wed, 02 Oct 2013 13:44:36 +0200 Message-ID: <87k3hvucbf.fsf@gmx.de> References: <20130925080403.GS12411@kuru.dyndns-at-home.com> <86siwt1d9c.fsf@somewhere.org> <8738otjkdt.fsf@gmx.de> <871u4czq4t.fsf@gmx.de> <20130926002156.GA13887@kuru.dyndns-at-home.com> <86vc1of3cp.fsf@somewhere.org> <87eh8ckjtk.fsf@gmx.de> <87mwmydpz3.fsf_-_@gmx.de> <87li2cjetb.fsf@gmx.de> <20131002100515.GN2622@kuru.dyndns-at-home.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42946) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VRKrI-0005oN-Vm for emacs-orgmode@gnu.org; Wed, 02 Oct 2013 07:44:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VRKrD-0005Ol-Qr for emacs-orgmode@gnu.org; Wed, 02 Oct 2013 07:44:48 -0400 Received: from mout.gmx.net ([212.227.17.22]:63815) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VRKrD-0005OT-FL for emacs-orgmode@gnu.org; Wed, 02 Oct 2013 07:44:43 -0400 Received: from detlef.gmx.de ([87.146.62.51]) by mail.gmx.com (mrgmx003) with ESMTPS (Nemesis) id 0Lmqxo-1W1nCt3sBo-00h5Ti for ; Wed, 02 Oct 2013 13:44:40 +0200 In-Reply-To: <20131002100515.GN2622@kuru.dyndns-at-home.com> (Suvayu Ali's message of "Wed, 2 Oct 2013 12:05:15 +0200") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Suvayu Ali Cc: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain Suvayu Ali writes: > Hi Michael, Hi Suvayu, > I tried to test by looking for a specific bug. This is what I tried: > > - search phrase: emacsclient > - submitter: fatkasuvayu (that is leading part of my email address) > - status: done or nothing > > But then I get an empty "*Org Bugs*" buffer. Hmm, yes. But this seems to be a server side problem. If you apply the same search via its web interface, you get the same empty result: I'll investigate. > A small problem though, calling org-debbugs-search or org-debbugs-bugs > from an "*Org Bugs*" buffer gives me the following backtraces: Oops. Fixed, patch appended. Best regards, Michael. --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-org-debbugs.el-org-debbugs-mode-map-Move-docstring-w.patch >From c0214b63bc7a5e532a1c0fe06ebe3bb50f1a9b49 Mon Sep 17 00:00:00 2001 From: Michael Albinus Date: Wed, 2 Oct 2013 13:36:20 +0200 Subject: [PATCH] * org-debbugs.el (org-debbugs-mode-map): Move docstring where it belongs to. --- contrib/lisp/org-debbugs.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/lisp/org-debbugs.el b/contrib/lisp/org-debbugs.el index 9c31b2b..fe5430e 100644 --- a/contrib/lisp/org-debbugs.el +++ b/contrib/lisp/org-debbugs.el @@ -409,11 +409,11 @@ returned." hits)))))) (defconst org-debbugs-mode-map - "Keymap for the `org-debbugs-mode' minor mode." (let ((map (make-sparse-keymap))) (define-key map (kbd "C-c # c") 'debbugs-gnu-send-control-message) (define-key map (kbd "C-c # d") 'debbugs-gnu-display-status) - map)) + map) + "Keymap for the `org-debbugs-mode' minor mode.") ;; Make byte-compiler quiet. (defvar gnus-posting-styles) -- 1.8.1.2 --=-=-=--