From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ulf Stegemann Subject: Re: Problem with org-gnus-follow-link Date: Wed, 10 Dec 2008 11:08:30 +0100 Message-ID: References: <8763lt8euq.fsf@thinkpad.tsdh.de> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LALzw-0007RF-Rv for emacs-orgmode@gnu.org; Wed, 10 Dec 2008 05:08:52 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LALzv-0007QU-2s for emacs-orgmode@gnu.org; Wed, 10 Dec 2008 05:08:52 -0500 Received: from [199.232.76.173] (port=51708 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LALzu-0007QG-Bn for emacs-orgmode@gnu.org; Wed, 10 Dec 2008 05:08:50 -0500 Received: from main.gmane.org ([80.91.229.2]:55521 helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LALzt-0003q1-DR for emacs-orgmode@gnu.org; Wed, 10 Dec 2008 05:08:50 -0500 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1LALzn-000749-AE for emacs-orgmode@gnu.org; Wed, 10 Dec 2008 10:08:43 +0000 Received: from london.zeitform.net ([146.140.213.100]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 10 Dec 2008 10:08:43 +0000 Received: from ulf-news by london.zeitform.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 10 Dec 2008 10:08:43 +0000 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi Tassilo, Tassilo Horn wrote: > Please try this patch and report back if it works. [...] > - (gnus-group-read-group 1 nil group) > - (gnus-summary-goto-article > - (if (string-match "[^0-9]" article) > - article > - (string-to-number article)) > - nil t)) > - (group (gnus-group-jump-to-group group)))) > + (gnus-group-read-group t nil group) > + (gnus-summary-goto-article article nil t)) > + (group (gnus-group-jump-to-group group)))) this works in principle but is not really an option. Since first argument 't' to `gnus-group-read-group' makes every article readable in a group, building the summary buffer takes far too long for groups with many articles. Try it with groups containing 10.000+ articles and you'll see what I mean. Ulf