From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/79362 Path: news.gmane.org!not-for-mail From: James Cloos Newsgroups: gmane.emacs.gnus.general Subject: Re: Localized rescan (M-g) Date: Mon, 04 Jul 2011 12:57:19 -0400 Message-ID: References: <87d3hrc6xx.fsf@newsguy.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1309799029 4187 80.91.229.12 (4 Jul 2011 17:03:49 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 4 Jul 2011 17:03:49 +0000 (UTC) Cc: ding@gnus.org To: Harry Putnam Original-X-From: ding-owner+M27658@lists.math.uh.edu Mon Jul 04 19:03:45 2011 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 1QdmYj-0006Po-6S for ding-account@gmane.org; Mon, 04 Jul 2011 19:03:45 +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 1QdmYQ-0007GR-VY; Mon, 04 Jul 2011 12:03:27 -0500 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1QdmYP-0007GI-To for ding@lists.math.uh.edu; Mon, 04 Jul 2011 12:03:25 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.76) (envelope-from ) id 1QdmYN-0000KD-Qh for ding@lists.math.uh.edu; Mon, 04 Jul 2011 12:03:25 -0500 Original-Received: from eagle.jhcloos.com ([207.210.242.212]) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1QdmYL-0004T6-Ki for ding@gnus.org; Mon, 04 Jul 2011 19:03:21 +0200 Original-Received: by eagle.jhcloos.com (Postfix, from userid 10) id 154B440028; Mon, 4 Jul 2011 17:02:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=jhcloos.com; s=eagle; t=1309798999; bh=rURvykx4DSRKP/VRWxftuBselAAbeMqv6YaIuN/3BHU=; h=From:To:Cc:Subject:In-Reply-To:References:Date:Message-ID: MIME-Version:Content-Type; b=LUIqtDBnoDwyI1gY19eXAfkYvVHM0mH3nnmRYBWbrnTjZxATJGvVtt2xfFUfv7U1a E0FyygqNrkydCa8kpS6qDG5SYRFgIoas436gTDqsCYinVF3r9ZLtgjWTLqp9phVtWK ZT7at2/3V2jLdFHzx49Kk3dNpOgs8Hl4OIGo8gig= Original-Received: by carbon.jhcloos.org (Postfix, from userid 500) id 2C202260048; Mon, 4 Jul 2011 16:57:19 +0000 (UTC) In-Reply-To: <87d3hrc6xx.fsf@newsguy.com> (Harry Putnam's message of "Sun, 03 Jul 2011 17:53:14 -0500") User-Agent: Gnus/5.110018 (No Gnus v0.18) Emacs/24.0.50 (gnu/linux) Face: iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAgMAAABinRfyAAAACVBMVEX///8ZGXBQKKnCrDQ3 AAAAJElEQVQImWNgQAAXzwQg4SKASgAlXIEEiwsSIYBEcLaAtMEAADJnB+kKcKioAAAAAElFTkSu QmCC Copyright: Copyright 2011 James Cloos OpenPGP: ED7DAEA6; url=http://jhcloos.com/public_key/0xED7DAEA6.asc OpenPGP-Fingerprint: E9E9 F828 61A4 6EA9 0F2B 63E7 997A 9F17 ED7D AEA6 Original-Lines: 36 X-Hashcash: 1:30:110704:reader@newsguy.com::SH2D17a2cYCZtlIF:000000000000000000000000000000000000000000w1kuL X-Hashcash: 1:30:110704:ding@gnus.org::hlZidGG76tqpz5c0:000DDZAZ X-Spam-Score: -2.0 (--) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:79362 Archived-At: >>>>> "HP" == Harry Putnam writes: HP> In my setup I notice that whenever I do a localized rescan on a HP> single group gnus scrolls to the next group on completion. HP> That doesn't make much sense does it? I find that I repeat M-g to update a block of groups quite frequently. A quick look at the source for gnus-group-get-new-news-this-group led me to the variable gnus-goto-next-group-when-activating: ,----[ C-h v gnus-goto-next-group-when-activating RET ] | gnus-goto-next-group-when-activating is a variable defined in `gnus-group.el'. | Its value is t | | Documentation: | *If non-nil, the M-g command will advance point to the next group. | | You can customize this variable. | | [back] `---- So, customize that to null if you do not want M-g to go the the next group. (I ran C-h k M-g in the *Group* buffer to get the help for the M-g command, moved to point to the underlined _gnus-group.el_ in the resulting *Help* buffer. That opened gnus-group.el with point at the start of the function gnus-group-get-new-news-this-group. I then scrolled to the end of that function to see whether the point move was conditionalized, where I found gnus-goto-next-group-when-activating. C-h v gave the above info.) -JimC -- James Cloos OpenPGP: 1024D/ED7DAEA6