Skip to content

Commit

Permalink
Update to clojure 1.6.0, backtick 0.3.1
Browse files Browse the repository at this point in the history
- Use clojure.core/record?
- Bump backtick to 0.3.1
  • Loading branch information
devn committed Sep 11, 2014
1 parent 4672faf commit 20eaf52
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions project.clj
@@ -1,6 +1,6 @@
(defproject backtick "0.3.0"
(defproject backtick "0.3.1"
:description "Provides the syntax-quote reader macro as a normal macro"
:url "https://github.com/brandonbloom/backtick"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.5.1"]])
:dependencies [[org.clojure/clojure "1.6.0"]])
3 changes: 0 additions & 3 deletions src/backtick.clj
Expand Up @@ -22,9 +22,6 @@
(defn unquote-splicing? [form]
(and (seq? form) (= (first form) 'clojure.core/unquote-splicing)))

(defn record? [x]
(instance? clojure.lang.IRecord x))

(defn- quote-fn* [form]
(cond
(symbol? form) `'~(resolve form)
Expand Down

0 comments on commit 20eaf52

Please sign in to comment.