From e92980b9ad3262a4f105dc9eb9ff94996cccc5b1 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Sat, 14 Jun 2008 00:41:48 -0500 Subject: [PATCH] fix compiler errors --- extra/html/parser/parser.factor | 2 +- extra/html/parser/utils/utils.factor | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/extra/html/parser/parser.factor b/extra/html/parser/parser.factor index 1ae5768f98..c8aa9aa9e6 100644 --- a/extra/html/parser/parser.factor +++ b/extra/html/parser/parser.factor @@ -122,7 +122,7 @@ SYMBOL: tagstack : parse-attributes ( -- hashtable ) [ (parse-attributes) ] { } make >hashtable ; -: (parse-tag) +: (parse-tag) ( string -- string' hashtable ) [ read-token >lower parse-attributes diff --git a/extra/html/parser/utils/utils.factor b/extra/html/parser/utils/utils.factor index 592503e3dd..c3372d750a 100644 --- a/extra/html/parser/utils/utils.factor +++ b/extra/html/parser/utils/utils.factor @@ -4,7 +4,7 @@ namespaces prettyprint quotations sequences splitting state-parser strings sequences.lib ; IN: html.parser.utils -: string-parse-end? +: string-parse-end? ( -- ? ) get-next not ; : take-string* ( match -- string )