From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/72403 Path: news.gmane.org!not-for-mail From: Matt Lundin Newsgroups: gmane.emacs.gnus.general Subject: Re: [PATCH] Introduce gnus-completing-read Date: Fri, 01 Oct 2010 11:57:32 -0400 Message-ID: <87lj6hhpn7.fsf@fastmail.fm> References: <1285688153-19680-1-git-send-email-julien@danjou.info> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1285948704 14740 80.91.229.12 (1 Oct 2010 15:58:24 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 1 Oct 2010 15:58:24 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M20775@lists.math.uh.edu Fri Oct 01 17:58:23 2010 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1P1i04-0000qH-SW for ding-account@gmane.org; Fri, 01 Oct 2010 17:58:21 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1P1hzm-0005TS-5b; Fri, 01 Oct 2010 10:58:02 -0500 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1P1hzl-0005TE-08 for ding@lists.math.uh.edu; Fri, 01 Oct 2010 10:58:01 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtp (Exim 4.72) (envelope-from ) id 1P1hzW-00009p-E1 for ding@lists.math.uh.edu; Fri, 01 Oct 2010 10:58:00 -0500 Original-Received: from lo.gmane.org ([80.91.229.12]) by quimby.gnus.org with esmtp (Exim 3.36 #1 (Debian)) id 1P1hzV-0004mN-00 for ; Fri, 01 Oct 2010 17:57:45 +0200 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1P1hzS-0000eH-PR for ding@gnus.org; Fri, 01 Oct 2010 17:57:42 +0200 Original-Received: from 67-197-63-212.rh2.dyn.cm.comporium.net ([67.197.63.212]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 01 Oct 2010 17:57:42 +0200 Original-Received: from mdl by 67-197-63-212.rh2.dyn.cm.comporium.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 01 Oct 2010 17:57:42 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 41 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: 67-197-63-212.rh2.dyn.cm.comporium.net User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/24.0.50 (gnu/linux) Cancel-Lock: sha1:zt/XdW8b6nHEtmPBHi07dPLuiTo= X-Spam-Score: -0.4 (/) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:72403 Archived-At: Julien Danjou writes: > > As promised yesterday, here's my patch! > > It adds `gnus-completion-styles' which set `completion-styles' when calling > `completing-read'. With these changes I find that gnus-group-jump-to-group no longer works when jumping to a group that: 1) is on my primary select-method server 2) that is subscribed Here is my primary select method: (setq gnus-select-method '(nntp "news.gmane.org")) When I try to jump to a group that is subscribed, say gmane.emacs.gnus.general, I get the following error: ,---- | Debugger entered--Lisp error: (void-variable gmane\.emacs\.gnus\.general) | gnus-group-completing-read(nil nil nil nil) | (list (gnus-group-completing-read nil nil (gnus-read-active-file-p) (if current-prefix-arg (cdr (assq current-prefix-arg gnus-group-jump-to-group-prompt)) (or (and (stringp gnus-group-jump-to-group-prompt) gnus-group-jump-to-group-prompt) (let ((p (cdr ...))) (and (stringp p) p)))))) | call-interactively(gnus-group-jump-to-group) | my-gnus-goto-topic-or-group() | call-interactively(my-gnus-goto-topic-or-group nil nil) `---- This does not happen for groups on other servers. E.g.,... M-x gnus-group-jump-to-group [RET] nnshimbun+nytimes:homepage ...takes me directly to that group. Strangely, jumping to an unsubscribed/zombie group on the primary server also works. Thanks, Matt