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) Thanks, - Jeff --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] 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 -~----------~----~----~----~------~----~------~--~---
