From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/81738 Path: news.gmane.org!not-for-mail From: Tassilo Horn Newsgroups: gmane.emacs.gnus.general Subject: Re: Reading groups without starting Gnus Date: Thu, 12 Apr 2012 19:42:55 +0200 Message-ID: <878vi0vobk.fsf@thinkpad.tsdh.de> References: <87zkagx3ul.fsf@thinkpad.tsdh.de> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1334252600 18243 80.91.229.3 (12 Apr 2012 17:43:20 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 12 Apr 2012 17:43:20 +0000 (UTC) Cc: ding@gnus.org To: Lars Magne Ingebrigtsen Original-X-From: ding-owner+M30016@lists.math.uh.edu Thu Apr 12 19:43:19 2012 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1SIO37-0006nr-7S for ding-account@gmane.org; Thu, 12 Apr 2012 19:43:13 +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 1SIO31-0001yB-0V; Thu, 12 Apr 2012 12:43:07 -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 1SIO2z-0001xv-A6 for ding@lists.math.uh.edu; Thu, 12 Apr 2012 12:43:05 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.76) (envelope-from ) id 1SIO2v-0008Fz-9X for ding@lists.math.uh.edu; Thu, 12 Apr 2012 12:43:05 -0500 Original-Received: from out1-smtp.messagingengine.com ([66.111.4.25]) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1SIO2t-00019Y-LC for ding@gnus.org; Thu, 12 Apr 2012 19:42:59 +0200 Original-Received: from compute2.internal (compute2.nyi.mail.srv.osa [10.202.2.42]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id 2932E21685 for ; Thu, 12 Apr 2012 13:42:59 -0400 (EDT) Original-Received: from frontend1.nyi.mail.srv.osa ([10.202.2.160]) by compute2.internal (MEProxy); Thu, 12 Apr 2012 13:42:59 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=from:to:cc:subject:references:date :in-reply-to:message-id:mime-version:content-type; s=smtpout; bh=J7b3cT79Zyxb2lZC728ojCAZaEY=; b=YEN+sgNMwRGhM7s5gGV4c9SOwBXC LHR6rRsC+a/iMzskubsoEq8jHAYWzQiuOLe2eDre7zLiEm0mPWomfPfrugY22nbI caqfuBpvo6FgHmFUlg4OIv5aPXmj44C4WaRo165OgetuuhwcsorUsHp1Gpq/exl+ OUBN1fJ4KQ/kDGE= X-Sasl-enc: CIaolw2i/O/DF+b/m0Xw7P0b+NAl0jRm2uvXDM9MqSZR 1334252578 Original-Received: from thinkpad.tsdh.de (91-67-11-43-dynip.superkabel.de [91.67.11.43]) by mail.messagingengine.com (Postfix) with ESMTPSA id 14B428E0262; Thu, 12 Apr 2012 13:42:57 -0400 (EDT) In-Reply-To: (Lars Magne Ingebrigtsen's message of "Thu, 12 Apr 2012 19:25:52 +0200") User-Agent: Gnus/5.130004 (Ma Gnus v0.4) Emacs/24.1.50 (gnu/linux) X-Spam-Score: -2.9 (--) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:81738 Archived-At: Lars Magne Ingebrigtsen writes: > Tassilo Horn writes: > >> Oh, you've broken summary exit! With Ma Gnus from this morning, exiting >> a summary places point on the next group with unread messages. Now, >> point is always placed exactly >> [ Gnus (0/18) ] >> [ News (0/4) ]<------ HERE! > > I'm unable to reproduce this. The problem is that in `gnus-summary-exit', in ;; Make sure where we were, and go to next newsgroup. (when (buffer-live-p gnus-group-buffer) (set-buffer gnus-group-buffer)) `gnus-group-buffer' is nil, and thus later in (setq group-point (point)) the position of point in the *summary* is used here and later set as the new point position in *Group*. Bye, Tassilo