I added support for *1 *2 *3 in my fork of swank-clojure (for emacs/
slime), http://github.com/mikehinchey/swank-clojure.

I did one thing different which is to not reset the vars if the eval
is one of the vars themselves.  Rich noted most CL repls don't do
this, but it seems useful to me.  Thoughts?

user> :a
:a
user> :b
:b
user> :c
:c
user> *1
:c
user> *2
:b
user> *3
:a
user> (list *1 *2 *3)
(:c :b :a)

--~--~---------~--~----~------------~-------~--~----~
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
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to