Matthias asked me to remove this definition

svn: r15676
This commit is contained in:
Robby Findler 2009-08-05 21:30:55 +00:00
parent 0646de8473
commit 8bee13c680

View File

@ -1,6 +1,6 @@
#lang scheme
(provide define-keywords function-with-arity except err check-flat-spec)
(provide define-keywords function-with-arity except err)
(require
(for-template "syn-aux-aux.ss"
@ -38,9 +38,3 @@
(string-append "illegal specification: " (car extra-spec)))
#`(#,spec . #,p) p))
;; Symbol (Symbol X -> X) -> (X -> X)
(define (check-flat-spec tag coerce>)
(lambda (p)
(syntax-case p ()
[(b) #'(coerce> tag b)]
[_ (err tag p)])))