Skip to content

Commit

Permalink
Fix macro that creates fn with qualified name.
Browse files Browse the repository at this point in the history
This is flagged by specs in Clojure 1.9.
  • Loading branch information
puredanger committed Oct 20, 2016
1 parent 4b57659 commit 2991737
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/clojure/clojure/core/logic.clj
Original file line number Diff line number Diff line change
Expand Up @@ -1075,7 +1075,7 @@
`(mplus ~e (fn [] (mplus* ~@e-rest)))))

(defmacro -inc [& rest]
`(fn -inc [] ~@rest))
`(fn ~'-inc [] ~@rest))

(extend-type Object
ITake
Expand Down

0 comments on commit 2991737

Please sign in to comment.