removed warnings and partially fixed M3

git-svn-id: svn://10.0.0.236/trunk@24204 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rickg%netscape.com
1999-03-16 07:06:48 +00:00
parent 36e5062afc
commit 6aa4a20063
6 changed files with 34 additions and 18 deletions

View File

@@ -667,6 +667,13 @@ NS_IMETHODIMP CViewSourceHTML::HandleToken(CToken* aToken,nsIParser* aParser) {
{
SetColor("maroon",PR_TRUE,*mSink);
nsAutoString theStr("&");
nsString& theEntity=aToken->GetStringValueXXX();
if(!theEntity.EqualsIgnoreCase("XI",2)) {
PRUnichar theChar=theEntity.CharAt(0);
if((nsString::IsDigit(theChar)) || ('X'==theChar) || ('x'==theChar)){
theStr.Append("#");
}
}
theStr.Append(aToken->GetStringValueXXX());
theStr.Append(";");
WriteText(theStr,*mSink,PR_FALSE);