Dot special form problem.

2010-10-18 Thread Sergio Arbeo
Hello, everyone, I'm having problems with the dot special form. First things first, I have src-out defined this way: http://gist.github.com/632852 Then, I have problems using that function as an argument for a macro: http://gist.github.com/632849 Evaluation aborted throws an exception, shown

Re: Dot special form problem.

2010-10-18 Thread Kevin Downey
clojure works something like reader - macro expansion - compiler (eval) - run the exception you are seeing means that your macro expansion contains a form that the compiler doesn't know how to generate code for. for example if your macro expansion contained a Graphics2d object the compiler would

Re: Dot special form problem.

2010-10-18 Thread Sergio Arbeo
So sorry. Now it is working. Don't know why though. -- http://sergio.arbeo.net http://www.serabe.com -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are

Re: Dot special form problem.

2010-10-18 Thread Sergio Arbeo
On 18 October 2010 22:05, Kevin Downey redc...@gmail.com wrote: clojure works something like reader - macro expansion - compiler (eval) - run the exception you are seeing means that your macro expansion contains a form that the compiler doesn't know how to generate code for. for example if