From 242a58b9a469e0235a52db7ad4ce2851410ded99 Mon Sep 17 00:00:00 2001 From: "Marshall T. Vandegrift" Date: Tue, 25 Oct 2011 08:06:01 -0300 Subject: [PATCH] Specify :dynamic metadata with Clojure 1.2 compatible syntax. --- src/rosado/processing.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rosado/processing.clj b/src/rosado/processing.clj index 1469c28..cfd61d5 100644 --- a/src/rosado/processing.clj +++ b/src/rosado/processing.clj @@ -15,7 +15,7 @@ ;; used by functions in this lib. Use binding to set it ;; to an instance of processing.core.PApplet -(def ^:dynamic *applet*) +(def ^{:dynamic true} *applet*) (def toupper (memfn toUpperCase))