bug-guile
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

address@hidden in procedure-source


From: Bill Schottstaedt
Subject: address@hidden in procedure-source
Date: Mon, 07 Jun 2004 03:25:29 -0700
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4.2) Gecko/20040308

In Sunday's Guile:

guile> (define (hi a) (+ a 1))
guile> (procedure-source hi)
(lambda (a) address@hidden (+ a 1))

Is this (the new "address@hidden") an intentional change?
If I call the procedure, the address@hidden disappears:

guile> (define (hi a) (+ a 1))
guile> (hi 1)
2
guile> (procedure-source hi)
(lambda (a) (+ a 1))





reply via email to

[Prev in Thread] Current Thread [Next in Thread]