Fixed bug where &'s followed by whitespace were losing the whitespace

This commit is contained in:
kipp 1998-06-05 23:20:21 +00:00
Родитель 44a83c196b
Коммит 673f137fc2
2 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -282,6 +282,7 @@ PRInt32 CNavDelegate::ConsumeEntity(PRUnichar aChar,CScanner& aScanner,CToken*&
else {
//oops, we're actually looking at plain text...
nsAutoString temp("&");
temp.Append(ch);
result=ConsumeText(temp,aScanner,aToken);
}
}//if

Просмотреть файл

@ -282,6 +282,7 @@ PRInt32 CNavDelegate::ConsumeEntity(PRUnichar aChar,CScanner& aScanner,CToken*&
else {
//oops, we're actually looking at plain text...
nsAutoString temp("&");
temp.Append(ch);
result=ConsumeText(temp,aScanner,aToken);
}
}//if