diff options
Diffstat (limited to 'src/clojure/contrib/shell_out.clj')
-rw-r--r-- | src/clojure/contrib/shell_out.clj | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/clojure/contrib/shell_out.clj b/src/clojure/contrib/shell_out.clj index 768bb34b..79bebd4b 100644 --- a/src/clojure/contrib/shell_out.clj +++ b/src/clojure/contrib/shell_out.clj @@ -50,8 +50,8 @@ (if-not args opts (if (keyword? arg) - (recur (rrest args) (assoc opts arg (second args))) - (recur (rest args) (update-in opts [:cmd] conj arg)))))) + (recur (nnext args) (assoc opts arg (second args))) + (recur (next args) (update-in opts [:cmd] conj arg)))))) (defn- as-env-key [arg] "Helper so that callers can use symbols, keywords, or strings |