Afraid I can't , I want this to be in clojure code not emacs. The clojure code will be communicating with a lisp process which is running swank, so I need to send commands to the swank on the lisp saying 'evaluate this code', etc. So, I think I'll steal bits and pieces from swank-clojure!
-----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of Phil Hagelberg Sent: Sunday, September 13, 2009 2:53 PM To: [email protected] Subject: Re: Using Clojure with Swank "Seth Burleigh" <[email protected]> writes: > 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 the parts I need. Actually, you probably want to take a look at SLIME. swank-clojure is an adapter for SLIME that ports the server-side portion to Clojure instead of Common Lisp. SLIME is the client-side portion that's written in ELisp. I don't think we have any experts on the internals of SLIME here though, you might want to ask on a CL-specific mailing list since that's what SLIME was originally written for. -Phil --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. 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 -~----------~----~----~----~------~----~------~--~---
