Hello guilers!

I found a tiny bug while testing the R6RS support (which looks pretty
nice). Here's a patch, hope it's ok:

>From b1a9888893e4136a3e62d201550ee6cae032f088 Mon Sep 17 00:00:00 2001
From: =?utf-8?q?G=C3=B6ran=20Weinholt?= <go...@weinholt.se>
Date: Sat, 18 Sep 2010 18:35:30 +0200
Subject: [PATCH] Fix make-variable-transformer export

* module/rnrs/syntax-case.scm: Add make-variable-transformer to the
  imports. This was causing an unbound variable error even though
  (rnrs) had been imported.
---
 module/rnrs/syntax-case.scm |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/module/rnrs/syntax-case.scm b/module/rnrs/syntax-case.scm
index 6aa1cef..9d39000 100644
--- a/module/rnrs/syntax-case.scm
+++ b/module/rnrs/syntax-case.scm
@@ -36,7 +36,8 @@
 	  unsyntax-splicing
 
 	  syntax-violation)
-  (import (only (guile) syntax-case
+  (import (only (guile) make-variable-transformer
+		        syntax-case
 		        syntax
 		        
 		        identifier?
-- 
1.5.6.5

Regards,

-- 
Göran Weinholt <go...@weinholt.se>
"I AM LEARNING HANDSHAKES FROM AROUND THE WORLD!!!" -- Pokey the Penguin

Reply via email to