Fork me on GitHub
#clojure-dev
<
2017-11-28
>
andy.fingerhut03:11:47

Wow, would love to see that come up in indeterminate claims court some day.

nathanmarz23:11:01

is this a known issue with the repl?

user=> (assoc {} :!
  #_=>   1)
{:! 1}
user=> (assoc {} :%

RuntimeException EOF while reading, starting at line 1  clojure.lang.Util.runtimeException (Util.java:221)

user=> (def % :%)
#'user/%
user=> (assoc {} %
  #_=> 1)
{:% 1}

nathanmarz23:11:51

EOF exception whenever there's a linebreak in clojure code containing keyword with %

bronsa23:11:54

@nathanmarz I can't reproduce on a bare repl

nathanmarz23:11:02

I'm using lein repl

bronsa23:11:09

a problem with lein then

gfredericks23:11:51

reproduced with lein I'd check reply first

nathanmarz23:11:43

looks like it had a similar issue awhile back https://github.com/trptcolin/reply/issues/168

nathanmarz23:11:49

I'll file an issue there