From 68f1142e409c0f5f944d740762ca746a94ae1d4d Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Mon, 6 Jun 2011 09:48:04 -0400 Subject: [PATCH] Remove `eval/require' and many of its one-time uses. (Cuts the rendering time for unstable by around 50%.) original commit: 3f9bc25c5c89da89b56e7ec88796b87f90e122bf --- 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 index 7b7c094..ab73f0e 100644 --- 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]