Try frequently doing: (use :reload 'fully.qualified.name.of.my.file) When you are interactively adding code to the REPL (by typing or through Slime or whatever) it doesn't know the line number. If you reload the file containing the offending code, it will.
I usually have a comment block like this on the bottom of modules I'm working on: (comment (use :reload 'this.current.file) (use 'clojure.contrib.stacktrace) (e) (use 'clojure.contrib.trace) ) That way I can pop down there, reload the file, ensure that stacktrace is loaded, and run the (e) command (to show the exception) without any effort. On Sat, Mar 14, 2009 at 2:42 AM, Mark Engelberg <mark.engelb...@gmail.com>wrote: > > But how do you get rid of the (NO_SOURCE_FILE:0) messages for every > single error? I'd really like to know the line number of the function > that threw the error. > > > > --~--~---------~--~----~------------~-------~--~----~ 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 clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en -~----------~----~----~----~------~----~------~--~---