From 6b4bbf96188eecfc6b453e1270be0b895d3fd300 Mon Sep 17 00:00:00 2001 From: "William J. Bowman" Date: Fri, 2 Oct 2015 21:34:04 -0400 Subject: [PATCH] Fixed issue with #%app and elim macros --- stdlib/sugar.rkt | 1 + 1 file changed, 1 insertion(+) diff --git a/stdlib/sugar.rkt b/stdlib/sugar.rkt index 873df4d..ef6250b 100644 --- a/stdlib/sugar.rkt +++ b/stdlib/sugar.rkt @@ -61,6 +61,7 @@ (define-syntax (#%app syn) (syntax-case syn () + [(_ e) #'e] [(_ e1 e2) #'(real-app e1 e2)] [(_ e1 e2 e3 ...)