From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/29053 Path: main.gmane.org!not-for-mail From: Per Abrahamsen Newsgroups: gmane.emacs.gnus.general Subject: Re: Can't customize nnimap groups Date: 02 Feb 2000 12:04:01 +0100 Organization: The Church of Emacs Sender: owner-ding@hpc.uh.edu Message-ID: References: <87iu0gxdce.fsf@ghidra.vail> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035165789 536 80.91.224.250 (21 Oct 2002 02:03:09 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 02:03:09 +0000 (UTC) Return-Path: Original-Received: from spinoza.math.uh.edu (spinoza.math.uh.edu [129.7.128.18]) by mailhost.sclp.com (Postfix) with ESMTP id 906AFD051F for ; Wed, 2 Feb 2000 06:04:57 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by spinoza.math.uh.edu (8.9.1/8.9.1) with ESMTP id FAB20991; Wed, 2 Feb 2000 05:04:31 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Wed, 02 Feb 2000 05:04:23 -0600 (CST) Original-Received: from mailhost.sclp.com (postfix@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id FAA10116 for ; Wed, 2 Feb 2000 05:04:10 -0600 (CST) Original-Received: from sheridan.dina.kvl.dk (sheridan.dina.kvl.dk [130.225.40.227]) by mailhost.sclp.com (Postfix) with ESMTP id BB885D051F for ; Wed, 2 Feb 2000 06:04:06 -0500 (EST) Original-Received: from zuse.dina.kvl.dk (zuse.dina.kvl.dk [130.225.40.245]) by sheridan.dina.kvl.dk (8.9.3/8.9.3/Debian/GNU) with ESMTP id MAA23823 for ; Wed, 2 Feb 2000 12:03:04 +0100 Original-Received: (from abraham@localhost) by zuse.dina.kvl.dk (8.9.3+Sun/8.9.1) id MAA04954; Wed, 2 Feb 2000 12:04:01 +0100 (MET) X-Authentication-Warning: zuse.dina.kvl.dk: abraham set sender to abraham@dina.kvl.dk using -f Original-To: ding@gnus.org X-Face: +kRV2]2q}lixHkE{U)mY#+6]{AH=yN~S9@IFiOa@X6?GM|8MBp/ In-Reply-To: Christoph Rohland's message of "02 Feb 2000 10:23:10 +0100" Original-Lines: 55 User-Agent: Gnus/5.0803 (Gnus v5.8.3) Emacs/20.4 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:29053 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:29053 Christoph Rohland writes: > But this is only supported for know group parameters. Other variables > should be set with ((foo "42)). That's how I read the info file. Actually, it is both. Variables are supposed to be of the form above, but customize is supposed to be robust enough to handle unknown group parameters. This patch should fix the problem. 2000-02-02 Per Abrahamsen * wid-edit.el (widget-match-inline): An atom never matches a list. Index: wid-edit.el =================================================================== RCS file: /gd/gnu/cvsroot/emacs/lisp/wid-edit.el,v retrieving revision 1.62 diff -c -r1.62 wid-edit.el *** wid-edit.el 1999/11/09 13:42:34 1.62 --- wid-edit.el 2000/02/02 10:56:09 *************** *** 1,6 **** ;;; wid-edit.el --- Functions for creating and using widgets. ;; ! ;; Copyright (C) 1996, 1997, 1999 Free Software Foundation, Inc. ;; ;; Author: Per Abrahamsen ;; Maintainer: FSF --- 1,6 ---- ;;; wid-edit.el --- Functions for creating and using widgets. ;; ! ;; Copyright (C) 1996, 1997, 1999, 2000 Free Software Foundation, Inc. ;; ;; Author: Per Abrahamsen ;; Maintainer: FSF *************** *** 492,498 **** "In WIDGET, match the start of VALS." (cond ((widget-get widget :inline) (widget-apply widget :match-inline vals)) ! ((and vals (widget-apply widget :match (car vals))) (cons (list (car vals)) (cdr vals))) (t nil))) --- 492,498 ---- "In WIDGET, match the start of VALS." (cond ((widget-get widget :inline) (widget-apply widget :match-inline vals)) ! ((and (listp vals) (widget-apply widget :match (car vals))) (cons (list (car vals)) (cdr vals))) (t nil)))