From beb58fe466e99eb3da4f554a9bb7aa576f3ffdb5 Mon Sep 17 00:00:00 2001 From: Trent Buck Date: Tue, 24 Jan 2006 08:44:25 +0000 Subject: [PATCH] s/with-simple-html-output/with-html/stream/ --- contrib/cont-responder/eval-responder.factor | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/cont-responder/eval-responder.factor b/contrib/cont-responder/eval-responder.factor index 5f58089245..4c00ddad5c 100644 --- a/contrib/cont-responder/eval-responder.factor +++ b/contrib/cont-responder/eval-responder.factor @@ -117,10 +117,10 @@ USE: hashtables "browser" "responder" set - + - - + +
"Source" write
[ [ parse ] catch [ "No such word" write ] [ car see ] if ] with-simple-html-output
[ [ parse ] catch [ "No such word" write ] [ car see ] if ] with-html-stream
"Apropos" write "Usages" write
[ apropos ] with-simple-html-output [ [ parse ] catch [ "No such word" write ] [ car usages. ] if ] with-simple-html-output
[ apropos ] with-html-stream [ [ parse ] catch [ "No such word" write ] [ car usages. ] if ] with-html-stream
] make-hash ;