Skip to content

Commit

Permalink
fix for #61
Browse files Browse the repository at this point in the history
  • Loading branch information
jonase committed Nov 13, 2012
1 parent 8b6988d commit a46caf6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion project.clj
@@ -1,4 +1,4 @@
(defproject jonase/kibit "0.0.6"
(defproject jonase/kibit "0.0.7-SNAPSHOT"
:description "There's a function for that!"
:url "https://github.com/jonase/kibit"
:license {:name "Eclipse Public License - v 1.0"
Expand Down
3 changes: 1 addition & 2 deletions src/kibit/rules/misc.clj
Expand Up @@ -42,8 +42,7 @@
[(logic/== expr (list 'fn* args (logic/llist fun args)))])
(logic/pred fun #(or (keyword? %)
(and (symbol? %)
(not= \. (first (str %)))
(not-any? #{\/} (str %)))))))
(not-any? #{\/ \.} (str %)))))))
#(logic/== % fun)])

;; Java stuff
Expand Down

0 comments on commit a46caf6

Please sign in to comment.