Merge pull request #30 from malchmih/patch-3

Fix bug in start-with-args
This commit is contained in:
Anatoly 2015-12-24 10:33:18 -05:00
commit 6e1e449d27

View file

@ -261,7 +261,7 @@
(defn start-with-args [xs & states]
(reset! -args xs)
(if (first states)
(start states)
(apply start states)
(start)))
(defn start-with [with]