RE: Using Clojure with Swank

2009-09-13 Thread Seth Burleigh
s from swank-clojure! -Original Message- From: clojure@googlegroups.com [mailto:cloj...@googlegroups.com] On Behalf Of Phil Hagelberg Sent: Sunday, September 13, 2009 2:53 PM To: clojure@googlegroups.com Subject: Re: Using Clojure with Swank "Seth Burleigh" writes: > K, so I was be

RE: Using Clojure with Swank

2009-09-13 Thread Seth Burleigh
K, so I was being silly, what I actually wanted is sort of the emacs side of the communication. You know, the one Which sends out requests to evaluate clojure code (in this case lisp) instead of receiving the requests and sending The result back. I guess I could use swank-clojure and take out th

RE: Class function alwayrs returns java.lang.class??

2009-09-11 Thread Seth Burleigh
, Seth Burleigh wrote: Ah. So class returns the class of the instance, and does not find the class with the name given. Yes. So , if I wanted to get the class of a ExecutionEvent, I would Have to go (Class/forName "org.eclipse.core.commands.ExecutionEvent")? Nope, you would just ha

RE: Class function alwayrs returns java.lang.class??

2009-09-10 Thread Seth Burleigh
Ah. So class returns the class of the instance, and does not find the class with the name given. So , if I wanted to get the class of a ExecutionEvent, I would Have to go (Class/forName "org.eclipse.core.commands.ExecutionEvent")? Preferrably, I would like to simply go (Class/forName "ExecutionE

RE: Dynamically Changing Functions in Compiled Code

2009-09-06 Thread Seth Burleigh
you would have the plugin evaluate this code (to start the repl) you can then telnet in, and past new definitions for the functions On Sat, Sep 5, 2009 at 8:23 PM, Seth Burleigh wrote: > > How is this supposed to work? I use AOT compilation to produce the class > files, and I have

RE: Dynamically Changing Functions in Compiled Code

2009-09-05 Thread Seth Burleigh
How is this supposed to work? I use AOT compilation to produce the class files, and I have tried to recompile the functions but it doesn't appear to have an effect. I'm including the clojure as class files, are you saying that all I have to do is recompile the clojure functions? Of course, I ha

RE: Importing All from java package?

2009-09-03 Thread Seth Burleigh
OK! Thanks for the responses. -Original Message- From: clojure@googlegroups.com [mailto:cloj...@googlegroups.com] On Behalf Of Stuart Sierra Sent: Thursday, September 03, 2009 8:23 PM To: Clojure Subject: Re: Importing All from java package? On Sep 3, 6:31 pm, Gorsal wrote: > Hello! I