From 8ef5d3a29eacab9c26286b3c0d8f7e8bcde1789c Mon Sep 17 00:00:00 2001 From: gered Date: Wed, 24 Sep 2014 14:36:52 -0400 Subject: [PATCH] fix macro --- src/clj_hl7_fhir/core.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clj_hl7_fhir/core.clj b/src/clj_hl7_fhir/core.clj index 2855471..c955d2d 100644 --- a/src/clj_hl7_fhir/core.clj +++ b/src/clj_hl7_fhir/core.clj @@ -34,7 +34,7 @@ "wraps code that performs FHIR operations such that each FHIR HTTP request will have any extra HTTP headers specified in the given headers map." [headers & body] - `(binding [*extra-headers* headers] + `(binding [*extra-headers* ~headers] ~@body)) (defn- ->fhir-resource-name [x]