On Oct 13, 4:28 pm, Jeffrey Chu <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I'm having similar issues with r1067 in swank-clojure; but it's not
> printing/reading fns. Instead it's reading, inserting vars, and
> evaling. The weird thing is that I can't seem to reproduce it on a
> small scale. Anyways, that's my problem and I'll keep trying to figure
> it out.
>
> I found a different peculiarity while poking about and I was wondering
> if it's expected behavior:
>
> (cons 'first '((quote (1 2 3))))
> ;; => (first (quote (1 2 3)))
> (eval (cons 'first '((quote (1 2 3)))))
> ;; => 1
>
> (cons 'first `((quote (1 2 3))))
> ;; => (first (quote (1 2 3)))
> (eval (cons 'first `((quote (1 2 3)))))
> ;; java.lang.ExceptionInInitializerError (NO_SOURCE_FILE:0)
>
> (list 'first (list 'quote '(1 2 3)))
> ;; => (first (quote (1 2 3)))
> (eval (list 'first (list 'quote '(1 2 3))))
> ;; => 1
>
> (list 'first (list 'quote (map identity '(1 2 3))))
> ;; => (first (quote (1 2 3)))
> (eval (list 'first (list 'quote (map identity '(1 2 3)))))
> ;; java.lang.ExceptionInInitializerError (NO_SOURCE_FILE:0)
Ok, found and fixed, here. Not yet in SVN as I'm in the middle of AOT
compilation.
Thanks for the report and the examples.
Rich
--~--~---------~--~----~------------~-------~--~----~
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
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---