From 7cbde64d3a2d518f60b6ee70e5c6a030c9f56be6 Mon Sep 17 00:00:00 2001
From: Shantanu Kumar <kumar.shantanu@gmail.com>
Date: Sat, 13 Oct 2012 00:00:20 +0530
Subject: [PATCH] added arity-1 for ->>

---
 src/clj/clojure/core.clj |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/clj/clojure/core.clj b/src/clj/clojure/core.clj
index b6502d8..ad23fcd 100644
--- a/src/clj/clojure/core.clj
+++ b/src/clj/clojure/core.clj
@@ -1556,7 +1556,8 @@
   last item in the first form, making a list of it if it is not a
   list already. If there are more forms, inserts the first form as the
   last item in second form, etc."
-  {:added "1.1"} 
+  {:added "1.1"}
+  ([x] x)
   ([x form] (if (seq? form)
               (with-meta `(~(first form) ~@(next form)  ~x) (meta form))
               (list form x)))
-- 
1.7.9.5

