Re: unable to resolve symbol: doc

2011-09-30 Thread Phil Hagelberg
On Fri, Sep 30, 2011 at 2:13 PM, Alan Malloy wrote: > C-c C-d d, right? Oops, yes that's right. -Phil -- 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: unable to resolve symbol: doc

2011-09-30 Thread Alan Malloy
C-c C-d d, right? On Sep 30, 1:38 pm, Phil Hagelberg wrote: > On Fri, Sep 30, 2011 at 12:12 PM, Andrew wrote: > > When I do M-x clojure-jack-in on one project.clj which uses clojure 1.2.1, > > I'm able to evaluate (doc map). > > But with another project.clj which uses clojure 1.3.0-RC0, the repl

Re: unable to resolve symbol: doc

2011-09-30 Thread Phil Hagelberg
On Fri, Sep 30, 2011 at 12:12 PM, Andrew wrote: > When I do M-x clojure-jack-in on one project.clj which uses clojure 1.2.1, > I'm able to evaluate (doc map). > But with another project.clj which uses clojure 1.3.0-RC0, the repl is > unable to resolve symbol: doc. I also changed it to use clojure

Re: unable to resolve symbol: doc

2011-09-30 Thread Andrew
Oh **that's** what was meant by the blurb below. Thanks.2.26 doc & find-doc moved to REPL Adds special form docs to the REPL -- 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 post

Re: unable to resolve symbol: doc

2011-09-30 Thread Mark Rathwell
In 1.3 doc was moved to the clojure.repl namespace. So, at the repl, you can: (use 'clojure.repl) and (doc foo) should work again. On Fri, Sep 30, 2011 at 3:12 PM, Andrew wrote: > When I do M-x clojure-jack-in on one project.clj which uses clojure 1.2.1, > I'm able to evaluate (doc map). > Bu