On 27 Aug 2010, at 19:40, santervo wrote:

> Also, if i hold AltGr down after typing "{" (AltGr-7) when pressing
> space button, i get this:
> 
> user=> { :a "b" }
> java.lang.Exception: Unable to resolve symbol:  :a in this context
> (NO_SOURCE_FILE:0)


Note from the spaces in the error message that Clojure complaining it can't 
resolve the symbol " :a" -- your AltGr + Space magic is inserting a space-like 
character that Clojure is considering part of a valid symbol name. And since 
the symbol " :a" is not bound to a value in the current context, you get the 
above error message. Most extended characters are valid in symbol names.

-Steve

-- 
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, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to