From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/38468 Path: main.gmane.org!not-for-mail From: Simon Josefsson Newsgroups: gmane.emacs.gnus.general Subject: Re: message-subject-re Date: Sat, 01 Sep 2001 01:26:13 +0200 Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035174326 22593 80.91.224.250 (21 Oct 2002 04:25:26 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 04:25:26 +0000 (UTC) Cc: ding@gnus.org, emacs-custom@sunsite.dk Return-Path: Return-Path: Original-Received: (qmail 29284 invoked from network); 31 Aug 2001 23:26:53 -0000 Original-Received: from dolk.extundo.com (195.42.214.242) by gnus.org with SMTP; 31 Aug 2001 23:26:53 -0000 Original-Received: from barbar.josefsson.org (slipsten.extundo.com [195.42.214.241]) (authenticated) by dolk.extundo.com (8.11.6/8.11.6) with ESMTP id f7VNR1h17754; Sat, 1 Sep 2001 01:27:01 +0200 Original-To: Per Abrahamsen In-Reply-To: (Per Abrahamsen's message of "30 Aug 2001 16:17:25 +0200") Mail-Copies-To: nobody User-Agent: Gnus/5.090004 (Oort Gnus v0.04) Emacs/21.0.104 Original-Lines: 25 Xref: main.gmane.org gmane.emacs.gnus.general:38468 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:38468 Per Abrahamsen writes: >>> + :type '(radio (function-item message-strip-subject-re) >>> + (function-item message-strip-list-identifiers) >>> + (repeat :tag "List of functions" function))) >> >> This :type isn't perfect, replacing `radio' with `checklist' would be >> better (if `checklist' existed..), but the following seem to be as >> close as you can get: >> >> :type '(repeat :tag "List of functions" function)) > > What do you mean "if `checklist' existed.."? It didn't work to simply replace `radio' with `checklist', so I reckoned it didn't exist. > :type '(list (checklist :inline t > :greedy t > (function-item message-strip-subject-re) > (function-item message-strip-list-identifiers)) > (editable-list :inline t > :tag "List of functions" function))) This is very nice. Thank you.