hyper-literate/scribble-lib/scribble/private/qsloc.rkt
Matthew Flatt 904f83ecf3 rely on syntax objects preserving source locations
Rely on the representation of source locations in syntax objects, so
that its marshaling can take care of problems with absolute paths.
2015-12-09 17:24:20 -07:00

9 lines
221 B
Racket

#lang scheme/base
(require (for-syntax scheme/base))
(provide quote-syntax/loc)
;; Source locations are now preserved in the bytecode form of `quote-syntax`:
(define-syntax-rule (quote-syntax/loc d)
(quote-syntax d))