From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Dave Abrahams Newsgroups: gmane.emacs.devel Subject: Re: Gnus IMAP searching not working. Date: Mon, 31 Oct 2011 11:59:01 -0800 Message-ID: References: <86mxchrtgu.fsf@chateau.d.if> <81y5w1m66i.fsf@gmail.com> <86sjm9nkb6.fsf@chateau.d.if> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: dough.gmane.org 1320130285 17443 80.91.229.12 (1 Nov 2011 06:51:25 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 1 Nov 2011 06:51:25 +0000 (UTC) Cc: Ted Zlatanov To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Nov 01 07:51:21 2011 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1RL8Bs-0006So-Vq for ged-emacs-devel@m.gmane.org; Tue, 01 Nov 2011 07:51:21 +0100 Original-Received: from localhost ([::1]:41980 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RL8Bs-00074r-Gx for ged-emacs-devel@m.gmane.org; Tue, 01 Nov 2011 02:51:20 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:55934) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RL8Bp-00074d-FM for emacs-devel@gnu.org; Tue, 01 Nov 2011 02:51:19 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RL8Bn-0006x0-Vd for emacs-devel@gnu.org; Tue, 01 Nov 2011 02:51:17 -0400 Original-Received: from lo.gmane.org ([80.91.229.12]:59510) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RL8Bn-0006wW-Mu for emacs-devel@gnu.org; Tue, 01 Nov 2011 02:51:15 -0400 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1RL8Bk-0006RJ-Rc for emacs-devel@gnu.org; Tue, 01 Nov 2011 07:51:12 +0100 Original-Received: from 129-134-58-66.gci.net ([66.58.134.129]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 01 Nov 2011 07:51:12 +0100 Original-Received: from dave by 129-134-58-66.gci.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 01 Nov 2011 07:51:12 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 65 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: 129-134-58-66.gci.net User-Agent: Gnus/5.110018 (No Gnus v0.18) Emacs/23.3 (darwin) Cancel-Lock: sha1:qgE5gy3XxkrxCeSlbovTwgKYrGY= X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 80.91.229.12 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:145825 Archived-At: --=-=-= Content-Type: text/plain on Mon Oct 31 2011, wahjava.ml-AT-gmail.com (Ashish SHUKLA) wrote: > Jambunathan K writes: > >> wahjava.ml@gmail.com (Ashish SHUKLA) writes: > >>> Hi, >>> >>> I'm running Emacs bzr revision 106240 on FreeBSD, and I'm having problem >>> searching my IMAP mailbox using Gnus (i.e. keybinding G G), after prompting >>> for "Query", I get following error: >>> >>> Debugger entered--Lisp error: (void-variable gnus-registry-enabled) > >> Looks like M-x gnus-registry-initialize has not been called. > >> Commentary section in > >> M-: (find-file (locate-library "gnus-registry.el")) > > Yes, looks like that. > (defvar gnus-registry-enabled) > > (defvar gnus-summary-misc-menu) ;; Avoid byte compiler warning. > It seems to be introduced in r106109[1]. > > References: > [1] http://bzr.savannah.gnu.org/lh/emacs/trunk/revision/106109 I am responsible for this changeset, and I apologize for the problem. Please apply the following patch. Ted, could you upstream this, please? --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=gnus-registry.diff diff --git a/lisp/gnus-registry.el b/lisp/gnus-registry.el index 652e816..d25b8b1 100644 --- a/lisp/gnus-registry.el +++ b/lisp/gnus-registry.el @@ -164,7 +164,7 @@ nnmairix groups are specifically excluded because they are ephemeral." (const :tag "Always Install" t) (const :tag "Ask Me" ask))) -(defvar gnus-registry-enabled) +(defvar gnus-registry-enabled nil) (defvar gnus-summary-misc-menu) ;; Avoid byte compiler warning. --=-=-= Content-Type: text/plain -- Dave Abrahams BoostPro Computing http://www.boostpro.com --=-=-=--