From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/26756 Path: main.gmane.org!not-for-mail From: Per Abrahamsen Newsgroups: gmane.emacs.gnus.general Subject: Re: groups in levels 5-7 won't appear in groups buffer (was: Pterodactyl Gnus v0.98 is released) Date: 12 Nov 1999 20:25:16 +0100 Organization: The Church of Emacs Sender: owner-ding@hpc.uh.edu Message-ID: References: <8080gn$3v7$1@quimby.gnus.org> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035163906 21085 80.91.224.250 (21 Oct 2002 01:31:46 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 01:31:46 +0000 (UTC) Return-Path: Original-Received: from bart.math.uh.edu (bart.math.uh.edu [129.7.128.48]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id OAA05512 for ; Fri, 12 Nov 1999 14:25:52 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by bart.math.uh.edu (8.9.1/8.9.1) with ESMTP id NAB26884; Fri, 12 Nov 1999 13:25:50 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Fri, 12 Nov 1999 13:26:07 -0600 (CST) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id NAA29096 for ; Fri, 12 Nov 1999 13:25:55 -0600 (CST) Original-Received: from sheridan.dina.kvl.dk (sheridan.dina.kvl.dk [130.225.40.227]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id OAA05504 for ; Fri, 12 Nov 1999 14:25:23 -0500 (EST) Original-Received: from feller.dina.kvl.dk (feller.dina.kvl.dk [130.225.40.147]) by sheridan.dina.kvl.dk (8.9.0.Beta5/8.9.0.Beta5) with SMTP id UAA16278; Fri, 12 Nov 1999 20:25:46 +0100 Original-Received: by feller.dina.kvl.dk (SMI-8.6/SMI-SVR4) id UAA00018; Fri, 12 Nov 1999 20:25:16 +0100 Original-To: ding@gnus.org X-Face: +kRV2]2q}lixHkE{U)mY#+6]{AH=yN~S9@IFiOa@X6?GM|8MBp/ In-Reply-To: Lars Magne Ingebrigtsen's message of "12 Nov 1999 16:33:18 +0100" Original-Lines: 73 User-Agent: Gnus/5.070099 (Pterodactyl Gnus v0.99) Emacs/20.3 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:26756 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:26756 Lars Magne Ingebrigtsen writes: > Per Abrahamsen writes: > > > In that case, it would probably be a good idea to change them from > > defcustoms to defconsts. > > > > Do you want a patch? ;-) > > Yes, please. :-) 1999-11-12 Per Abrahamsen * gnus-start.el (gnus-level-subscribed, gnus-level-unsubscribed, gnus-level-zombie, gnus-level-killed): Changed from `defcustom' to `defconst'. Index: gnus-start.el =================================================================== RCS file: /usr/local/cvsroot/gnus/lisp/gnus-start.el,v retrieving revision 5.37 diff -c -r5.37 gnus-start.el *** gnus-start.el 1999/11/12 07:03:48 5.37 --- gnus-start.el 1999/11/12 19:26:33 *************** *** 141,167 **** (const some) (const t))) ! (defcustom gnus-level-subscribed 5 ! "*Groups with levels less than or equal to this variable are subscribed." ! :group 'gnus-group-levels ! :type 'integer) ! (defcustom gnus-level-unsubscribed 7 ! "*Groups with levels less than or equal to this variable are unsubscribed. Groups with levels less than `gnus-level-subscribed', which should be ! less than this variable, are subscribed." ! :group 'gnus-group-levels ! :type 'integer) ! (defcustom gnus-level-zombie 8 ! "*Groups with this level are zombie groups." ! :group 'gnus-group-levels ! :type 'integer) ! (defcustom gnus-level-killed 9 ! "*Groups with this level are killed." ! :group 'gnus-group-levels ! :type 'integer) (defcustom gnus-level-default-subscribed 3 "*New subscribed groups will be subscribed at this level." --- 141,159 ---- (const some) (const t))) ! (defconst gnus-level-subscribed 5 ! "Groups with levels less than or equal to this variable are subscribed.") ! (defconst gnus-level-unsubscribed 7 ! "Groups with levels less than or equal to this variable are unsubscribed. Groups with levels less than `gnus-level-subscribed', which should be ! less than this variable, are subscribed.") ! (defconst gnus-level-zombie 8 ! "Groups with this level are zombie groups.") ! (defconst gnus-level-killed 9 ! "Groups with this level are killed.") (defcustom gnus-level-default-subscribed 3 "*New subscribed groups will be subscribed at this level."