Remove `eval/require' and many of its one-time uses.

(Cuts the rendering time for unstable by around 50%.)

original commit: 3f9bc25c5c89da89b56e7ec88796b87f90e122bf
This commit is contained in:
Eli Barzilay 2011-06-06 09:48:04 -04:00
parent d3f24529fe
commit 68f1142e40

View File

@ -1,16 +1,11 @@
#lang scribble/manual
@(require scribble/eval
"utils.rkt"
(for-label unstable/find
racket/contract
racket/shared
racket/base))
@title[#:tag "find"]{Find}
@(require scribble/eval "utils.rkt"
(for-label unstable/find racket/contract racket/shared racket/base))
@(define the-eval (make-base-eval))
@(the-eval '(require unstable/find))
@(the-eval '(require racket/shared))
@(the-eval '(require unstable/find racket/shared))
@title[#:tag "find"]{Find}
@defmodule[unstable/find]