From 71ff9a7a8acd959b5c2e07a1b4c6cd587d28cce7 Mon Sep 17 00:00:00 2001 From: Jim Derry Date: Sun, 15 Aug 2021 11:17:50 -0400 Subject: [PATCH] Documentation update. No version bump. --- src/parser.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/parser.c b/src/parser.c index 0662779..cb02e04 100644 --- a/src/parser.c +++ b/src/parser.c @@ -976,12 +976,7 @@ static Parser* GetParserForNode( TidyDocImpl* doc, Node *node ) * This controller is responsible for calling each of the individual parsers, * based on the tokens it pulls from the lexer, or the tokens passed back via * the parserMemory stack from each of the parsers. Having a main, central - * looping dispatcher in this fashion allows the prevention of recursion. Note, - * though, that some of the parsers are still recursive and have to be - * refactored in order to cooperate with this controller. - * - * (The goal is to update the old-style parsers slowly and deliberately - * without causing regressions, in a series of smaller commits and updates.) + * looping dispatcher in this fashion allows the prevention of recursion. */ void ParseHTMLWithNode( TidyDocImpl* doc, Node* node ) {