Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
don't need no stinkin' defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
ztellman committed Feb 26, 2015
1 parent 18528d3 commit b66abd7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cljfmt/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject cljfmt "0.1.10"
(defproject ztellman/cljfmt "0.1.10"
:description "A library for formatting Clojure code"
:url "https://github.com/weavejester/cljfmt"
:scm {:dir ".."}
Expand Down
2 changes: 1 addition & 1 deletion cljfmt/src/cljfmt/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@
zloc)))

(defn indent [form indents]
(let [indents (into default-indents indents)]
(let [indents (into {} #_default-indents indents)]
(transform form edit-all should-indent? #(indent-line % indents))))

(defn reindent [form indents]
Expand Down

0 comments on commit b66abd7

Please sign in to comment.