Installing Clojure in Emacs

2010-04-19 Thread Allan Moore
Hi. I am trying to install Clojure in Emacs under Windows using the Assembla Wiki instructions. I am on the step where it says to type: M-x describe-variable inferior-lisp-program When I hit return in the command buffer I get the response in the buffer: "[no match]". I am aware that "M-x" m

Re: Installing Clojure in Emacs

2010-04-19 Thread Allan Moore
Yup I was hitting return. However, your alternate way to run the command works okay for me. Thanks Jose! -- 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 a

No string?

2010-05-21 Thread Allan Moore
Okay, this is probably a stupid question, but I have these three lines at the top of my file: (use 'clojure.contrib.duck-streams) (use 'clojure.contrib.classpath) (use 'clojure.contrib.string) I get the error message: java.io.FileNotFoundException: Could not locate clojure/contrib/ s

Re: No string?

2010-05-21 Thread Allan Moore
Great. Thanks James. -- 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 moderated - please be patient with your first post. To unsubscribe from this group

interesting problem

2010-06-06 Thread Allan Moore
I have a problem in my program. When I add something to a map, it also seems to get added to a completely different map. I catch the error with an assert on the line immediately following so there isn't much room for my program to do something wrong. The program does quite a bit of processing of

Re: interesting problem

2010-06-06 Thread Allan Moore
The actual code is identical to what I posted except for the variable names. Posting the actual code wouldn't help much unless I posted the entire program and I don't think you want to wade through that. Link is of type struct bar and it is passed in from the caller. Basically I have a bunch of

Re: interesting problem

2010-06-06 Thread Allan Moore
Okay, I have the jar. Thanks very much for posting that for me. I will try it out and let you know what happens. Are you part of the Clojure development team? -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to cloj

Re: interesting problem

2010-06-06 Thread Allan Moore
Okay, unfortunately with the new jar I am getting an error message when I try to load my code. I type: (load "Bugs") and I get: java.lang.ExceptionInInitializerError (bugs.clj:1) The first few lines of bugs.clj are: ; ; Bugs 0.01 ; (use

Quick question

2010-06-08 Thread Allan Moore
Does anybody know how I can produce a sorted-set from a list without overflowing the stack on a list of up to 20 items? -- 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

Re: Quick question

2010-06-08 Thread Allan Moore
Yes, that answers my question. Sorry still a newbie to clojure and lisps in general here. -- 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 moderated - p