scribble-enhanced/pkgs/scribble-pkgs/scribble-lib/scribble/render-struct.rkt
Matthew Flatt 8c1953bf47 raco setup and scribble: fix problems tracking document changes
Some non-transparent but serializable data structures broke
the comparison between previous and new outputs, which caused
too many document rebuilds.

Includes a change to make module path indexes work with `equal?'.

original commit: d5558a4fe0a0405140a6a44473f3000aef275685
2013-07-12 14:52:42 -06:00

9 lines
160 B
Racket

#lang scheme/base
(require scheme/serialize)
(provide (struct-out mobile-root))
(define-serializable-struct mobile-root (path)
#:mutable
#:transparent)