aboutsummaryrefslogtreecommitdiff
path: root/modules/command-line
diff options
context:
space:
mode:
authorKonrad Hinsen <konrad.hinsen@fastmail.net>2010-09-03 21:33:31 +0200
committerKonrad Hinsen <konrad.hinsen@fastmail.net>2010-09-03 21:33:31 +0200
commitbbb200f4053f0f557640825ccf870eb7858f7269 (patch)
tree931345016e96923989d823b10071f3922099c149 /modules/command-line
parent67fccc60f2a547f272df858c7367ef805d123ffc (diff)
parent1921e118d4a27c75084d0bece364e982ebe189b8 (diff)
Merge branch 'master' of git://github.com/clojure/clojure-contrib
Diffstat (limited to 'modules/command-line')
-rw-r--r--modules/command-line/pom.xml5
-rw-r--r--modules/command-line/src/main/clojure/clojure/contrib/command_line.clj2
2 files changed, 1 insertions, 6 deletions
diff --git a/modules/command-line/pom.xml b/modules/command-line/pom.xml
index 8e2e01c9..224311a8 100644
--- a/modules/command-line/pom.xml
+++ b/modules/command-line/pom.xml
@@ -12,10 +12,5 @@
</parent>
<artifactId>command-line</artifactId>
<dependencies>
- <dependency>
- <groupId>org.clojure.contrib</groupId>
- <artifactId>string</artifactId>
- <version>1.3.0-SNAPSHOT</version>
- </dependency>
</dependencies>
</project> \ No newline at end of file
diff --git a/modules/command-line/src/main/clojure/clojure/contrib/command_line.clj b/modules/command-line/src/main/clojure/clojure/contrib/command_line.clj
index 47ee7849..6399c4fc 100644
--- a/modules/command-line/src/main/clojure/clojure/contrib/command_line.clj
+++ b/modules/command-line/src/main/clojure/clojure/contrib/command_line.clj
@@ -12,7 +12,7 @@
^{:author "Chris Houser",
:doc "Process command-line arguments according to a given cmdspec"}
clojure.contrib.command-line
- (:use (clojure.contrib [string :only (join)])))
+ (:use (clojure [string :only (join)])))
(defn make-map [args cmdspec]
(let [{spec true [rest-sym] false} (group-by vector? cmdspec)