~ chicken-core (chicken-5) 10494f6bdc87c105b60fa33f011c3083af6149be


commit 10494f6bdc87c105b60fa33f011c3083af6149be
Author:     felix <felix@call-with-current-continuation.org>
AuthorDate: Thu Oct 27 11:16:16 2011 +0200
Commit:     felix <felix@call-with-current-continuation.org>
CommitDate: Thu Oct 27 11:16:16 2011 +0200

    fixed stupid paren-matching error

diff --git a/scrutinizer.scm b/scrutinizer.scm
index 22527677..a04220a3 100755
--- a/scrutinizer.scm
+++ b/scrutinizer.scm
@@ -49,7 +49,7 @@
 (define dd d)
 
 (define-syntax d (syntax-rules () ((_ . _) (void))))
-(define-syntax dd (syntax-rules () ((_ . _) (void))))))
+(define-syntax dd (syntax-rules () ((_ . _) (void))))
 
 
 ;;; Walk node tree, keeping type and binding information
Trap