diff options
Diffstat (limited to 'src/clojure/contrib/repl_utils.clj')
-rw-r--r-- | src/clojure/contrib/repl_utils.clj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clojure/contrib/repl_utils.clj b/src/clojure/contrib/repl_utils.clj index f1107d52..5ba37373 100644 --- a/src/clojure/contrib/repl_utils.clj +++ b/src/clojure/contrib/repl_utils.clj @@ -78,7 +78,7 @@ (:member (nth members selector)) (let [pred (if (ifn? selector) selector - #(re-seq (re-pattern (str "(?i)" selector)) (:name %)))] + #(re-find (re-pattern (str "(?i)" selector)) (:name %)))] (println "=== " (Modifier/toString (.getModifiers c)) c " ===") (doseq [[i m] (indexed members)] (when (pred m) |