racket/collects/mzlib/private/runtime-path-table.rkt
Matthew Flatt 495c0da189 fix define-runtime-paths' and raco exe'
Cross-module optimization started inlining the `#f'
value for the table that `raco exe' replaces.
2011-08-25 09:15:29 -06:00

6 lines
149 B
Racket

(module runtime-path-table mzscheme
(provide table)
(define table #f)
;; So table definition is not inlined across modules:
(set! table #f))