From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/12471 Path: main.gmane.org!not-for-mail From: Jari Aalto Newsgroups: gmane.emacs.gnus.general Subject: Re: What is group parameter 'quit-config ? Date: 02 Oct 1997 21:59:40 +0300 Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 (generated by tm-edit 7.106) Content-Type: text/plain; charset=US-ASCII X-Trace: main.gmane.org 1035152001 3955 80.91.224.250 (20 Oct 2002 22:13:21 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 22:13:21 +0000 (UTC) Return-Path: Original-Received: from xemacs.org (xemacs.cs.uiuc.edu [128.174.252.16]) by altair.xemacs.org (8.8.7/8.8.7) with ESMTP id NAA05607 for ; Thu, 2 Oct 1997 13:06:04 -0700 Original-Received: from ifi.uio.no (0@ifi.uio.no [129.240.64.2]) by xemacs.org (8.8.5/8.8.5) with SMTP id OAA12197 for ; Thu, 2 Oct 1997 14:59:15 -0500 (CDT) Original-Received: from claymore.vcinet.com (claymore.vcinet.com [208.205.12.23]) by ifi.uio.no with SMTP (8.6.11/ifi2.4) id for ; Thu, 2 Oct 1997 21:00:11 +0200 Original-Received: (qmail 25674 invoked by uid 504); 2 Oct 1997 19:00:01 -0000 Original-Received: (qmail 25669 invoked from network); 2 Oct 1997 19:00:00 -0000 Original-Received: from axl01it.ntc.nokia.com (HELO axl01it) (131.228.118.232) by claymore.vcinet.com with SMTP; 2 Oct 1997 18:59:59 -0000 Original-Received: from zeus.tele.nokia.fi (zeus.tele.nokia.fi [131.228.134.50]) by axl01it (8.8.5/8.6.9) with SMTP id VAA25011 for ; Thu, 2 Oct 1997 21:59:29 +0300 (EET DST) Original-Received: from pegasus.tele.nokia.fi (pegasus.ntc.nokia.com [131.228.169.148]) by zeus.tele.nokia.fi (8.6.4/8.6.4) with ESMTP id VAA09457 for ; Thu, 2 Oct 1997 21:57:33 +0300 Original-Received: (from jaalto@localhost) by pegasus.tele.nokia.fi (8.7.5/8.7.1) id VAA15361; Thu, 2 Oct 1997 21:59:41 +0300 (EETDST) Original-To: In-Reply-To: Justin Sheehy's message of "02 Oct 1997 10:57:32 -0400" Original-Lines: 34 X-Mailer: Quassia Gnus v0.11/Emacs 19.34 Xref: main.gmane.org gmane.emacs.gnus.general:12471 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:12471 | 97-10-02 Justin Sheehy list.ding | > 'quit-config. I dind't find any documentation for it | > from the .texi manual, so what is it used for? | | Neither did I, and I've never heard of that parameter. | | What makes you think that it exists? igrep.el + TinyIgrep.el combo told me that :-) cd /users/jaalto/elisp/gnus/qgnus/lisp/ find . -type d \( -name SCCS -o -name RCS \) -prune -o \( -type f \) -name "*el" -exec egrep -n -e 'quit-config' "{}" /dev/null \; For example there is already method for it: ./gnus.el:2222:(defun gnus-group-quit-config (group) (defun gnus-group-quit-config (group) "Return the quit-config of GROUP." (gnus-group-get-parameter group 'quit-config)) It seems to be used heavily in "would be" `gnus-summary-exit', which I was looking previously, but due to definition (defalias 'gnus-summary-quit 'gnus-summary-exit-no-update) The new code isn't activated yet. Sounds intereasting. | > How do I prevent gnus from going to next unread group? | [Justin: gnus-auto-select-next] Thank you.