Skip to content

Commit

Permalink
^ does what #^ does, reader metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
richhickey committed Apr 26, 2010
1 parent 1f70ed9 commit a5ca824
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jvm/clojure/lang/LispReader.java
Expand Up @@ -68,7 +68,7 @@ public class LispReader{
macros[';'] = new CommentReader();
macros['\''] = new WrappingReader(QUOTE);
macros['@'] = new WrappingReader(DEREF);//new DerefReader();
macros['^'] = new DeprecatedWrappingReader(META, "^");
macros['^'] = new MetaReader();
macros['`'] = new SyntaxQuoteReader();
macros['~'] = new UnquoteReader();
macros['('] = new ListReader();
Expand Down

0 comments on commit a5ca824

Please sign in to comment.