diff options
author | Stuart Halloway <stu@thinkrelevance.com> | 2009-08-23 12:22:49 -0400 |
---|---|---|
committer | Stuart Halloway <stu@thinkrelevance.com> | 2009-08-23 12:22:49 -0400 |
commit | 6b763062af9568c1b069d5f86c8d5481a3fdfeea (patch) | |
tree | f83f33e12cd5eb07244563eb5ccd2d08c4db8eb1 /src/clojure/contrib/macro_utils.clj | |
parent | 07eef46b22f27a61784c11be03ff0159fac50b38 (diff) | |
parent | 835bfe2a02c70c150f2354f8ef9e866f3e2fd180 (diff) |
Merge branch 'master' of git@github.com:richhickey/clojure-contrib
Diffstat (limited to 'src/clojure/contrib/macro_utils.clj')
-rw-r--r-- | src/clojure/contrib/macro_utils.clj | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/clojure/contrib/macro_utils.clj b/src/clojure/contrib/macro_utils.clj index 08c743e1..98685b77 100644 --- a/src/clojure/contrib/macro_utils.clj +++ b/src/clojure/contrib/macro_utils.clj @@ -1,7 +1,7 @@ ;; Macrolet and symbol-macrolet ;; by Konrad Hinsen -;; last updated May 25, 2009 +;; last updated August 19, 2009 ;; Copyright (c) Konrad Hinsen, 2009. All rights reserved. The use ;; and distribution terms for this software are covered by the Eclipse @@ -26,8 +26,7 @@ of another macro, they may be used anywhere. Global symbol macros can be used only inside a with-symbol-macros form."} clojure.contrib.macro-utils - (:use [clojure.contrib.def :only (defvar-)]) - (:use [clojure.walk :only (prewalk)])) + (:use [clojure.contrib.def :only (defvar-)])) ; A set of all special forms. Special forms are not macro-expanded, making ; it impossible to shadow them by macro definitions. For most special |