summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarlo Zancanaro <carlo@clearboxsystems.com.au>2013-09-02 00:45:48 +1000
committerCarlo Zancanaro <carlo@clearboxsystems.com.au>2013-09-02 00:45:48 +1000
commitef4627e39f9746fe27238c862294df94ab4e164b (patch)
treecca44cabee94511955dfb56dc7240ca9d9f9b750 /src
parentef7f6a48b92680aeeea9ddbf1f4210e1d87d52e7 (diff)
Fix an issue relating to vars in the context macro
Diffstat (limited to 'src')
-rw-r--r--src/reverse_routing/core.clj3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/reverse_routing/core.clj b/src/reverse_routing/core.clj
index 377d75e..2907fb4 100644
--- a/src/reverse_routing/core.clj
+++ b/src/reverse_routing/core.clj
@@ -43,7 +43,8 @@
path-keys (vec (:keys (clout.core/route-compile string-path)))
keylen (count path-keys)
lookup-fn `(fn [[route-name# args-count#]]
- (let [r# (#'lookup-route [route-name# (- args-count# ~keylen)]
+ (let [~args (repeat nil) ;; hacky, but necessary - provide nil values for args
+ r# (#'lookup-route [route-name# (- args-count# ~keylen)]
~@routes)
{uri# :uri, args# :args} r#]
(if r#