Welcome! Please see the About page for a little more info on how this works.

+2 votes
in Clojure by

syntax-quote is currently a somewhat gnarly bit of java code in LispReader.java, would be great to replace it with a (hopefully less gnarly) clojure macro.

LispReader.java would be required to do something similar to 'x => (quote x). `x => (syntax-quote x) , ~x => (unquote x), ~@x => (unquote-splicing x)

1 Answer

+1 vote
by
Reference: https://clojure.atlassian.net/browse/CLJ-880 (reported by hiredman)
...