Small changes

This commit is contained in:
Jay McCarthy 2015-11-23 14:41:23 -05:00
parent 5349767531
commit c9b706d866
2 changed files with 8 additions and 3 deletions

View File

@ -1,5 +1,6 @@
#lang racket/base
(require racket/match)
(require racket/contract/base
racket/match)
(define (syntax-strings->input-port name first-ss)
(define line 1)
@ -52,4 +53,9 @@
(make-input-port name read-in #f void #f #f
get-location void #f #f))
(provide syntax-strings->input-port)
(provide
(contract-out
[syntax-strings->input-port
(-> any/c
(listof syntax?)
input-port?)]))

View File

@ -179,7 +179,6 @@
(syntax/loc stx
(remix-cut (#%dot bodies ...)))]))])
;; xxx make this more powerful, like super-cut
(define-syntax-parameter remix-cut-$
(λ (stx)
(raise-syntax-error '$ "illegal outside cut" stx)))