From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Jan D." Newsgroups: gmane.emacs.devel Subject: Re: EWMH package, please review. Date: Mon, 27 Oct 2003 06:56:23 +0100 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <4B75B6A4-0842-11D8-893C-00039363E640@swipnet.se> References: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 (Apple Message framework v552) Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1067234473 26687 80.91.224.253 (27 Oct 2003 06:01:13 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 27 Oct 2003 06:01:13 +0000 (UTC) Cc: ttn@glug.org, storm@cua.dk, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Mon Oct 27 07:01:10 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 1AE0RC-0006Iy-00 for ; Mon, 27 Oct 2003 07:01:10 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1AE0RC-0002g5-00 for ; Mon, 27 Oct 2003 07:01:10 +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 1AE0OJ-00068E-50 for emacs-devel@quimby.gnus.org; Mon, 27 Oct 2003 00:58:11 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.24) id 1AE0Nv-00064N-Eb for emacs-devel@gnu.org; Mon, 27 Oct 2003 00:57:47 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.24) id 1AE0NL-00054W-I9 for emacs-devel@gnu.org; Mon, 27 Oct 2003 00:57:42 -0500 Original-Received: from [193.201.16.94] (helo=stubby.bodenonline.com) by monty-python.gnu.org with esmtp (Exim 4.24) id 1AE0NK-00051S-WD; Mon, 27 Oct 2003 00:57:11 -0500 Original-Received: from accessno42.bodenonline.com (accessno42.bodenonline.com [193.201.16.44]) by stubby.bodenonline.com (8.12.1/8.12.1) with ESMTP id h9R6e2ku010780; Mon, 27 Oct 2003 07:40:02 +0100 Original-To: David Kastrup In-Reply-To: X-Mailer: Apple Mail (2.552) 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:17449 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:17449 > You mean things like doing recursion without having a lexical > possibility to let a lambda function refer to itself? > > Emacs-Lisp: > > ((lambda (f g n) (funcall g (funcall f f g) n)) > (lambda (f g) `(lambda (n) (,g (funcall ,f ,f ,g) n))) > (lambda (f n) (if (zerop n) 1 (* n (funcall f (1- n))))) > 5) > > Common Lisp: delete the ` and , In principle yes, but not that advanced/obscure :-) Jan D.