
Rely on the representation of source locations in syntax objects, so that its marshaling can take care of problems with absolute paths.
9 lines
221 B
Racket
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))
|