commit 68f1142e409c0f5f944d740762ca746a94ae1d4d parent d3f24529feba1907387a883465541d56cd4b6f3e Author: Eli Barzilay <eli@barzilay.org> Date: Mon, 6 Jun 2011 09:48:04 -0400 Remove `eval/require' and many of its one-time uses. (Cuts the rendering time for unstable by around 50%.) original commit: 3f9bc25c5c89da89b56e7ec88796b87f90e122bf Diffstat:
| M | collects/unstable/scribblings/find.scrbl | | | 15 | +++++---------- |
1 file changed, 5 insertions(+), 10 deletions(-)
diff --git a/collects/unstable/scribblings/find.scrbl b/collects/unstable/scribblings/find.scrbl @@ -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]