From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: Creating recursive customization types / widgets Date: Sun, 30 Nov 2003 20:45:10 -0500 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: References: Reply-To: rms@gnu.org NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1070244064 23788 80.91.224.253 (1 Dec 2003 02:01:04 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 1 Dec 2003 02:01:04 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Mon Dec 01 03:01:01 2003 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1AQdMz-0007fJ-00 for ; Mon, 01 Dec 2003 03:01:01 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1AQdMz-0006av-00 for ; Mon, 01 Dec 2003 03:01:01 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1AQeJj-0000jj-BO for emacs-devel@quimby.gnus.org; Sun, 30 Nov 2003 22:01:43 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.24) id 1AQeIj-0000ZU-FP for emacs-devel@gnu.org; Sun, 30 Nov 2003 22:00:41 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.24) id 1AQeER-0008B7-Jg for emacs-devel@gnu.org; Sun, 30 Nov 2003 21:56:46 -0500 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1AQeEM-00088B-Hn for emacs-devel@gnu.org; Sun, 30 Nov 2003 21:56:10 -0500 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.24) id 1AQd7e-0002MD-59; Sun, 30 Nov 2003 20:45:10 -0500 Original-To: Per Abrahamsen In-reply-to: (message from Per Abrahamsen on Sat, 29 Nov 2003 17:38:24 +0100) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:18236 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:18236 (define-widget 'child 'default "Base widget for recursive datastructures. You need to set :type to the widget type for the datastructure you want to define, and set :match to a function that matches the datastructure. If the datastructure is not recursive, you don't have to set :match." It looks like a good feature, but I can't really understand that doc string, so it needs to be somewhat clearer.