Re: syntax for defrecord literals and tagged literals

2012-11-20 Thread Steve Miner
CLJ-1100 Reader literals cannot contain periods has a patch that will allow tags to have periods. It does not address the issue of allowing a space after the record type for record literals. My patch for CLJ-1100 would also allow *default-readers* to override a defrecord definition. That's

syntax for defrecord literals and tagged literals

2012-11-17 Thread Brent Millare
The syntax for defrecord literals and tagged literals is very similar. user (defrecord x [y]) user.x user #user.x[3] #user.x{:y 3} user #user.x [3] RuntimeException Unreadable constructor form starting with #user.x clojure.lang.Util.runtimeException (Util.java:170) [3] Basically