From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Bill Schottstaedt Newsgroups: gmane.lisp.guile.bugs Subject: #@lambda in procedure-source Date: Mon, 07 Jun 2004 03:25:29 -0700 Sender: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Message-ID: <40C44299.5050203@ccrma> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1086603979 9962 80.91.224.253 (7 Jun 2004 10:26:19 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 7 Jun 2004 10:26:19 +0000 (UTC) Original-X-From: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Mon Jun 07 12:26:12 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1BXHKV-0001Qq-00 for ; Mon, 07 Jun 2004 12:26:11 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1BXHL2-00031a-S1 for guile-bugs@m.gmane.org; Mon, 07 Jun 2004 06:26:44 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1BXHL0-00031L-AD for bug-guile@gnu.org; Mon, 07 Jun 2004 06:26:42 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1BXHKx-000319-Iu for bug-guile@gnu.org; Mon, 07 Jun 2004 06:26:42 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1BXHKx-000316-H5 for bug-guile@gnu.org; Mon, 07 Jun 2004 06:26:39 -0400 Original-Received: from [171.67.16.138] (helo=smtp3.Stanford.EDU) by monty-python.gnu.org with esmtp (Exim 4.34) id 1BXHJu-00067c-49 for bug-guile@gnu.org; Mon, 07 Jun 2004 06:25:34 -0400 Original-Received: from cm-mail.stanford.edu (cm-mail.Stanford.EDU [171.64.197.135]) by smtp3.Stanford.EDU (8.12.11/8.12.11) with ESMTP id i57APTjC029353 for ; Mon, 7 Jun 2004 03:25:29 -0700 Original-Received: from ccrma (cmn13.stanford.edu [171.64.197.162]) by cm-mail.stanford.edu (8.11.6/8.11.6) with ESMTP id i57APTx00329 for ; Mon, 7 Jun 2004 03:25:29 -0700 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4.2) Gecko/20040308 X-Accept-Language: en-us, en Original-To: bug-guile@gnu.org X-BeenThere: bug-guile@gnu.org X-Mailman-Version: 2.1.4 Precedence: list List-Id: "Bug reports for GUILE, GNU's Ubiquitous Extension Language" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.lisp.guile.bugs:1471 X-Report-Spam: http://spam.gmane.org/gmane.lisp.guile.bugs:1471 In Sunday's Guile: guile> (define (hi a) (+ a 1)) guile> (procedure-source hi) (lambda (a) #@lambda (+ a 1)) Is this (the new "#@lambda") an intentional change? If I call the procedure, the #@lambda disappears: guile> (define (hi a) (+ a 1)) guile> (hi 1) 2 guile> (procedure-source hi) (lambda (a) (+ a 1)) _______________________________________________ Bug-guile mailing list Bug-guile@gnu.org http://lists.gnu.org/mailman/listinfo/bug-guile