From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/34541 Path: main.gmane.org!not-for-mail From: Hannu Koivisto Newsgroups: gmane.emacs.gnus.general Subject: Re: Exiting a group without moving to the next unread group? Date: 03 Feb 2001 15:22:27 +0200 Sender: owner-ding@hpc.uh.edu Message-ID: <871ytflx4c.fsf@lynx.ionific.com> References: <87k87fjzao.fsf@lynx.ionific.com> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035170449 30961 80.91.224.250 (21 Oct 2002 03:20:49 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 03:20:49 +0000 (UTC) Return-Path: Original-Received: from karazm.math.uh.edu (karazm.math.uh.edu [129.7.128.1]) by mailhost.sclp.com (Postfix) with ESMTP id 3046FD049D for ; Sat, 3 Feb 2001 08:24:26 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by karazm.math.uh.edu (8.9.3/8.9.3) with ESMTP id HAC04920; Sat, 3 Feb 2001 07:23:02 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Sat, 03 Feb 2001 07:22:09 -0600 (CST) Original-Received: from mailhost.sclp.com (postfix@66-209.196.61.interliant.com [209.196.61.66] (may be forged)) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id HAA13099 for ; Sat, 3 Feb 2001 07:22:00 -0600 (CST) Original-Received: from lynx.ionific.com (lynx.ionific.com [195.197.252.71]) by mailhost.sclp.com (Postfix) with ESMTP id E10C0D049D for ; Sat, 3 Feb 2001 08:22:28 -0500 (EST) Original-Received: from azure by lynx.ionific.com with local (Exim 3.12 #1 (Debian)) id 14P2e3-0007WO-00; Sat, 03 Feb 2001 15:22:27 +0200 Original-To: ding@gnus.org Mail-copies-to: never In-Reply-To: <87k87fjzao.fsf@lynx.ionific.com> (Hannu Koivisto's message of "28 Jan 2001 20:40:15 +0200") User-Agent: Gnus/5.090001 (Oort Gnus v0.01) Emacs/20.7 Precedence: list X-Majordomo: 1.94.jlt7 Original-Lines: 18 Xref: main.gmane.org gmane.emacs.gnus.general:34541 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:34541 Hannu Koivisto writes: | The subject pretty much says it all -- how can I exit a group so | that Gnus doesn't move to the next unread group in the group | buffer? Since there didn't seem to be a way, I implemented one (yes, it is a bit hackish): (defun gnus-summary-exit-dont-move (&optional temporary) "Like `gnus-summary-exit' but does not move to the next unread group." (interactive) (flet ((gnus-group-next-unread-group (n &rest ignored) n)) (gnus-summary-exit temporary))) -- Hannu