From d50afc2a35317618b1b3c5ca70b863edef3d6304 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Wed, 13 Aug 2008 23:13:13 -0500 Subject: [PATCH] remove unfinished code for now --- extra/html/parser/printer/printer.factor | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/extra/html/parser/printer/printer.factor b/extra/html/parser/printer/printer.factor index d352a97688..27cb21a927 100644 --- a/extra/html/parser/printer/printer.factor +++ b/extra/html/parser/printer/printer.factor @@ -83,13 +83,6 @@ M: src-printer print-closing-named-tag ( tag -- ) SYMBOL: tab-width SYMBOL: #indentations -: html-pp ( vector -- ) - [ - 0 #indentations set - 2 tab-width set - - ] with-scope ; - : print-tabs ( -- ) tab-width get #indentations get * CHAR: \s write ; @@ -125,3 +118,6 @@ M: printer print-tag ( tag -- ) ! H{ { table-gap { 10 10 } } } [ ! [ [ [ [ . ] with-cell ] each ] with-row ] each ! ] tabular-output + +! : html-pp ( vector -- ) + ! [ 0 #indentations set 2 tab-width set ] with-scope ;