Merge pull request #322 from benkasminbullock/master

Don't push back non-A tokens.
This commit is contained in:
Geoff McLane 2015-11-26 00:54:55 +01:00
commit 2522730e3c
1 changed files with 4 additions and 1 deletions

View File

@ -1352,7 +1352,10 @@ void TY_(ParseBlock)( TidyDocImpl* doc, Node *element, GetTokenMode mode)
continue;
}
TY_(UngetToken)( doc );
if (nodeIsA(element))
{
TY_(UngetToken)( doc );
}
TY_(ReportError)(doc, element, node, MISSING_ENDTAG_BEFORE);
if (!(mode & Preformatted))