Skip to content

Commit

Permalink
Don't use namespaced function names
Browse files Browse the repository at this point in the history
Clojure 1.9 will likely disallow this (alpha11 already does)
  • Loading branch information
gfredericks committed Aug 21, 2016
1 parent 06699b9 commit 1e93384
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/palletops/shorthand.clj
Expand Up @@ -10,7 +10,7 @@
"Return a function definition form for lazily injecting a var into a
namespace."
[]
`(fn var-fn [ns# sym# v-sym# meta-m#]
`(fn ~'var-fn [ns# sym# v-sym# meta-m#]
(intern
ns# (with-meta sym# (merge
{:arglists '[[& not-yet-loaded]]}
Expand Down

0 comments on commit 1e93384

Please sign in to comment.