From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/34556 Path: main.gmane.org!not-for-mail From: prj@po.cwru.edu (Paul Jarc) Newsgroups: gmane.emacs.gnus.general Subject: burying Gnus buffers Date: 05 Feb 2001 11:20:34 -0500 Sender: owner-ding@hpc.uh.edu Message-ID: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035170462 31049 80.91.224.250 (21 Oct 2002 03:21:02 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 03:21:02 +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 2230CD049D for ; Mon, 5 Feb 2001 11:25:28 -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 KAC20969; Mon, 5 Feb 2001 10:21:10 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Mon, 05 Feb 2001 10:20:20 -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 KAA25197 for ; Mon, 5 Feb 2001 10:20:09 -0600 (CST) Original-Received: from multivac.cwru.edu (multivac.STUDENT.CWRU.Edu [129.22.96.25]) by mailhost.sclp.com (Postfix) with SMTP id D72B9D049D for ; Mon, 5 Feb 2001 11:20:35 -0500 (EST) Original-Received: (qmail 16630 invoked by uid 500); 5 Feb 2001 16:20:56 -0000 Mail-Followup-To: ding@gnus.org Original-To: ding@gnus.org User-Agent: Gnus/5.0807 (Gnus v5.8.7) Emacs/20.7 Precedence: list X-Majordomo: 1.94.jlt7 Original-Lines: 15 Xref: main.gmane.org gmane.emacs.gnus.general:34556 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:34556 I'd like to bury all Gnus buffers so I can go work on something else, but then when I come back to Gnus I won't have to re-open servers. I want to do this from the Group buffer, with no Summary buffers around. I can invoke bury-buffer to bury the Group buffer, but then I typically get the Article buffer. This works, but only sometimes: (add-hook 'gnus-exit-group-hook (function (lambda () (let ((buffer (get-buffer gnus-article-buffer))) (if buffer (bury-buffer buffer)))))) I.e., after exiting a Summary buffer, the Article buffer is sometimes buried, and sometimes still just under the Group buffer. Any ideas why, or alternate solutions? paul