On Thu, Dec 18, 2008 at 6:02 PM, brian <[email protected]> wrote: > > Hope this is the appropriate place for this... anyway, very trivial > issue. I was playing around in an effort to begin to understand the > ns fns & managed to get the current/active ns & REPL displayed ns out > of synch via the following: > > user> *ns* > #<Namespace user> > user> (in-ns 'howdy) > #<Namespace howdy> > howdy> (clojure.core/refer 'clojure.core) > nil > howdy> *ns* > #<Namespace howdy> > howdy> (remove-ns 'howdy) > #<Namespace howdy> > howdy> *ns* > #<Namespace user> > howdy> > howdy> (in-ns 'user) > #<Namespace user> > howdy> > > Switching to another ns corrects it.
We now have several Repls, and each acts slightly differently. I couldn't reproduce this with clojure.lang.Repl. I'm guessing from your prompt that you're using emacs/slime. Is that correct? --Chouser --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
