MSVC snuck in some tab characters...

This commit is contained in:
Jim Derry 2017-09-22 19:27:47 -04:00
parent c579d5b62c
commit 64fb5640cb
2 changed files with 4 additions and 4 deletions

View File

@ -4277,8 +4277,8 @@ static AttVal* ParseAttrs( TidyDocImpl* doc, Bool *isempty )
av->value = value;
av->dict = TY_(FindAttribute)( doc, av );
AddAttrToList( &list, av );
if ( !delim && value )
TY_(ReportAttrError)( doc, lexer->token, av, MISSING_QUOTEMARK_OPEN);
if ( !delim && value )
TY_(ReportAttrError)( doc, lexer->token, av, MISSING_QUOTEMARK_OPEN);
}
else
{

View File

@ -535,7 +535,7 @@ TidyMessageImpl *formatAttributeReport(TidyDocImpl* doc, Node *element, Node *no
case MISSING_QUOTEMARK_OPEN:
return TY_(tidyMessageCreateWithNode)(doc, node, code, level, name );
case BACKSLASH_IN_URI:
case BACKSLASH_IN_URI:
case ESCAPED_ILLEGAL_URI:
case FIXED_BACKSLASH:
case ID_NAME_MISMATCH:
@ -1092,8 +1092,8 @@ void TY_(Dialogue)(TidyDocImpl* doc, uint code, ...)
{
if ( dialogueDispatchTable[i].code == code )
{
TidyMessageImpl *message;
TidyReportLevel level = dialogueDispatchTable[i].level;
TidyMessageImpl *message;
va_start(args, code);
message = formatDialogue( doc, code, level, args );
va_end(args);