
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
9 lines
160 B
Racket
9 lines
160 B
Racket
#lang scheme/base
|
|
|
|
(require scheme/serialize)
|
|
(provide (struct-out mobile-root))
|
|
|
|
(define-serializable-struct mobile-root (path)
|
|
#:mutable
|
|
#:transparent)
|