From 1c604999238457ab14746c8af35216eea0d7e810 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Thu, 14 Apr 2011 13:20:23 -0600 Subject: [PATCH] fix nit: "running 2nd time" instead of "re-running 2nd time" because "re-running 2nd time" should mean the 3rd run --- collects/scribble/private/run-pdflatex.rkt | 5 +++-- collects/setup/scribble.rkt | 3 +-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/collects/scribble/private/run-pdflatex.rkt b/collects/scribble/private/run-pdflatex.rkt index 3802f80851..7efec3a3cd 100644 --- a/collects/scribble/private/run-pdflatex.rkt +++ b/collects/scribble/private/run-pdflatex.rkt @@ -27,8 +27,9 @@ (err "didn't get a stable result after ~a runs" n)) (if (zero? n) (notify "running pdflatex on ~a" file) - (notify " re-running ~a~a time" - (add1 n) (case (add1 n) [(2) 'nd] [(3) 'rd] [else 'th]))) + (notify " running ~a~a time" + (add1 n) + (case (add1 n) [(2) 'nd] [(3) 'rd] [else 'th]))) (run) ;; see if we get a "Rerun" note, these seem to come in two flavors ;; * Label(s) may have changed. Rerun to get cross-references right. diff --git a/collects/setup/scribble.rkt b/collects/setup/scribble.rkt index 4ccfefa134..946590bade 100644 --- a/collects/setup/scribble.rkt +++ b/collects/setup/scribble.rkt @@ -25,8 +25,7 @@ (provide setup-scribblings verbose - run-pdflatex -) + run-pdflatex) (define verbose (make-parameter #t))