Spacing fixes. No version bump.

This commit is contained in:
Jim Derry 2021-08-25 07:19:48 -04:00
parent 52e55d1554
commit a604621fef
1 changed files with 3 additions and 2 deletions

View File

@ -1983,7 +1983,7 @@ Node* TY_(ParseBody)( TidyDocImpl* doc, Node *body, GetTokenMode mode )
if ( TY_(InlineDup)(doc, node) > 0 )
continue;
}
DEBUG_LOG_GET_OLD_MODE;
mode = MixedContent;
DEBUG_LOG_CHANGE_MODE;
@ -6079,7 +6079,8 @@ Bool TY_(IsBlank)(Lexer *lexer, Node *node)
isBlank = ( node->end == node->start || /* Zero length */
( node->end == node->start+1 /* or one blank. */
&& lexer->lexbuf[node->start] == ' ' ) );
return isBlank;
return isBlank;
}