From 29a9abf39454a683b0092efafdf2afb95ef0c4b5 Mon Sep 17 00:00:00 2001 From: Ryan Culpepper Date: Mon, 17 Sep 2012 02:35:51 -0400 Subject: [PATCH] fix bad attr reference (datum attr doesn't exist) That macro doesn't seem to be used anywhere. Perhaps it can just be deleted. --- collects/typed-racket/utils/stxclass-util.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/typed-racket/utils/stxclass-util.rkt b/collects/typed-racket/utils/stxclass-util.rkt index ac24833197..ed6172dc5e 100644 --- a/collects/typed-racket/utils/stxclass-util.rkt +++ b/collects/typed-racket/utils/stxclass-util.rkt @@ -17,7 +17,7 @@ (string->symbol (string-append (symbol->string (syntax-e i)) "." - (symbol->string #'attr.datum))))]) + (symbol->string (syntax-e #'attr)))))]) (quasisyntax/loc stx (syntax-parse arg [#,i #:declare #,i pat #'#,get-i])))]))