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: Tue, 02 Dec 2003 23:46:12 -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 1070427040 7872 80.91.224.253 (3 Dec 2003 04:50:40 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 3 Dec 2003 04:50:40 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Wed Dec 03 05:50:36 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 1AROyC-0005F2-00 for ; Wed, 03 Dec 2003 05:50:36 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1AROyB-0008ME-02 for ; Wed, 03 Dec 2003 05:50:36 +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 1ARPsr-00040B-BD for emacs-devel@quimby.gnus.org; Wed, 03 Dec 2003 00:49:09 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.24) id 1ARPrz-0003pH-Kv for emacs-devel@gnu.org; Wed, 03 Dec 2003 00:48:15 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.24) id 1ARPrR-0003jx-UW for emacs-devel@gnu.org; Wed, 03 Dec 2003 00:48:13 -0500 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1ARPrR-0003jr-Nw for emacs-devel@gnu.org; Wed, 03 Dec 2003 00:47:41 -0500 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.24) id 1AROtw-00013j-KM; Tue, 02 Dec 2003 23:46:12 -0500 Original-To: Per Abrahamsen In-reply-to: (message from Per Abrahamsen on Tue, 02 Dec 2003 11:31: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:18304 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:18304 'lazy' and 'delayed' are good because they describe how the widget accomplish its task. But I now believe 'recursive' is best, because it described what the task is. Also (define-widget 'binary-tree 'recursive ...) reads well: A binary tree is a recursive datastructure with the following attributes ... That use is recursive, but the widget doesn't require you to use recursion. Its essence is lazy or delayed evaluation. So I think that should be the name.