[Move undefine-js-compiler-macro into an eval-when. Reported by William Halliburton.
attila.lendvai@gmail.com**20060513093031] {
hunk ./src/js.lisp 214
-forms are compiler macros for JS expressions."))
+forms are compiler macros for JS expressions.")
+
+  (defun undefine-js-compiler-macro (name)
+    (declare (type symbol name))
+    (when (gethash (symbol-name name) *js-compiler-macros*)
+      (warn "Redefining compiler macro ~S" name)
+      (remhash (symbol-name name) *js-compiler-macros*))))
hunk ./src/js.lisp 231
-(defun undefine-js-compiler-macro (name)
-  (declare (type symbol name))
-  (when (gethash (symbol-name name) *js-compiler-macros*)
-    (warn "Redefining compiler macro ~S" name)
-    (remhash (symbol-name name) *js-compiler-macros*)))
-
}