Thanks Red. That was enormously embarrassing. Jim
On Sat, Jun 6, 2009 at 10:00 AM, parenscript-devel-request@common-lisp.netwrote:
Send parenscript-devel mailing list submissions to parenscript-devel@common-lisp.net
To subscribe or unsubscribe via the World Wide Web, visit http://common-lisp.net/cgi-bin/mailman/listinfo/parenscript-devel or, via email, send a message with subject or body 'help' to parenscript-devel-request@common-lisp.net
You can reach the person managing the list at parenscript-devel-owner@common-lisp.net
When replying, please edit your Subject line so it is more specific than "Re: Contents of parenscript-devel digest..."
Today's Topics:
- Create doesn't create (ps_jim@emidium.com)
- Re: Create doesn't create (Red Daly)
- Catch forms shouldn't require a variable (Daniel Gackle)
- Lexical scoping question (Daniel Gackle)
Message: 1 Date: Fri, 05 Jun 2009 12:40:44 -0400 From: ps_jim@emidium.com Subject: [parenscript-devel] Create doesn't create To: parenscript-devel@common-lisp.net Message-ID: 16286717.439541244220044718.JavaMail.servlet@perfora Content-Type: text/plain; charset=UTF-8
Hey all, I'm new to parenscript so I hope this is a reasonable question
I think
(parenscript:ps (create :foo "bar" :blorg 1))
should return
{ foo : 'bar', blorg :1}
but it returns
create('foo', 'bar', 'blorg', 1);
which means it is falling through to a regular function.
I was looking at the source and there create is a 'define-ps-special-form' but it's gonna take me a while to figure out what is going on. Any thoughts about what I'm doing wrong?
This was in the last tarball and the latest from git.
Jim
Message: 2 Date: Fri, 5 Jun 2009 10:26:14 -0700 From: Red Daly reddaly@gmail.com Subject: Re: [parenscript-devel] Create doesn't create To: parenscript-devel parenscript-devel@common-lisp.net Message-ID: f6700f0c0906051026o79a5cd35r424ddf9fba2a1c46@mail.gmail.com Content-Type: text/plain; charset="iso-8859-1"
Make sure you are using the 'create from the parenscript package:
(ps:ps (ps:create :foo "bar" :blorg 1))
that's my guess,
Red
On Fri, Jun 5, 2009 at 9:40 AM, ps_jim@emidium.com wrote:
Hey all, I'm new to parenscript so I hope this is a reasonable question
I think
(parenscript:ps (create :foo "bar" :blorg 1))
should return
{ foo : 'bar', blorg :1}
but it returns
create('foo', 'bar', 'blorg', 1);
which means it is falling through to a regular function.
I was looking at the source and there create is a
'define-ps-special-form'
but it's gonna take me a while to figure out what is going on. Any
thoughts
about what I'm doing wrong?
This was in the last tarball and the latest from git.
Jim
parenscript-devel mailing list parenscript-devel@common-lisp.net http://common-lisp.net/cgi-bin/mailman/listinfo/parenscript-devel
parenscript-devel@common-lisp.net