From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/7203 Path: main.gmane.org!not-for-mail From: Colin Rafferty Newsgroups: gmane.emacs.gnus.general Subject: Re: process mark and group exiting Date: 15 Jul 1996 11:10:01 -0400 Message-ID: References: Reply-To: Colin Rafferty NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035147545 6270 80.91.224.250 (20 Oct 2002 20:59:05 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 20:59:05 +0000 (UTC) Return-Path: ding-request@ifi.uio.no Original-Received: from ifi.uio.no (ifi.uio.no [129.240.64.2]) by deanna.miranova.com (8.7.5/8.6.9) with SMTP id IAA13237 for ; Mon, 15 Jul 1996 08:36:31 -0700 Original-Received: from mlfire.ml.com (mlfire.ml.com [192.246.100.1]) by ifi.uio.no with ESMTP (8.6.11/ifi2.4) id for ; Mon, 15 Jul 1996 17:10:38 +0200 Original-Received: from commpost.ml.com ([146.125.4.24]) by mlfire.ml.com (8.7.5/8.7.3/MLgw-2.05) with SMTP id LAA07572 for ; Mon, 15 Jul 1996 11:14:59 -0400 (EDT) Original-Received: from spssunp.spspme.ml.com (spssunp.spspme.ml.com [192.168.111.13]) by commpost.ml.com (8.6.12/8.6.12) with ESMTP id LAA01675; Mon, 15 Jul 1996 11:13:41 -0400 (EST) Original-Received: by spssunp.spspme.ml.com (SMI-8.6/SMI-4.1) id LAA16801; Mon, 15 Jul 1996 11:10:02 -0400 Original-To: (ding) GNUS Mailing List X-Face: ByE+UMAp1klWR3?\RNGx(A-~Ri!YT%C6M!sxoJL+.;9`Q/|+dj7[KR>gGMyV.2qZeot0NI`4\MA^_Qg`F9=+Ox&zaE?Y9dV%F~Xzf';Zyk2Aobs.uu^Ey0_C6^~q';G#$HkA!ZAHXPpG-"*|Dd*Z4U$4y{{aI0c%75}i~Of(jxYtI[uIpYF<*Zoe|\*/ufb X-Y-Zippy: Now I understand the meaning of ``THE MOD SQUAD''! In-Reply-To: Eric Swenson's message of 12 Jul 1996 16:55:54 +0000 Original-Lines: 15 X-Mailer: Gnus v5.2.25/XEmacs 19.14 Xref: main.gmane.org gmane.emacs.gnus.general:7203 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:7203 Eric Swenson writes: > Shouldn't Gnus warn you upon exit of a group if you have process > marks set? It usually indicates that you forgot to do what you > intended to do. (defadvice gnus-summary-exit (around no-process-mark enable) "Only exit if there are no process-marked articles." (gnus-set-global-variables) (if (or (null gnus-newsgroup-processable) (yes-or-no-p "Articles marked, really quit this group? ")) ad-do-it)) -- Colin