From 434c864f0aa663f76cca7a9e91968e706ac18dfe Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Sun, 26 Jun 2016 02:03:15 -0700 Subject: [PATCH] html: fix skip usage. --- libs/html/templates/fhtml/fhtml.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/html/templates/fhtml/fhtml.factor b/libs/html/templates/fhtml/fhtml.factor index e5cb272d0b..4cfccb1f69 100644 --- a/libs/html/templates/fhtml/fhtml.factor +++ b/libs/html/templates/fhtml/fhtml.factor @@ -18,7 +18,7 @@ M: template-lexer skip-word { { [ 2dup nth char: \" = ] [ drop 1 + ] } { [ 2dup swap tail-slice "%>" head? ] [ drop 2 + ] } - [ f skip ] + [ skip-meat ] } cond ] change-lexer-column ;