A little tweaking to my previous checkin.

Checking for NS_OK.
This commit is contained in:
harishd@netscape.com
1999-07-14 16:04:41 +00:00
parent 614c66576c
commit 640e17a8d8
2 changed files with 8 additions and 4 deletions

View File

@@ -549,8 +549,10 @@ nsresult CTextToken::ConsumeUntil(PRUnichar aChar,PRBool aIgnoreComments,nsScann
static nsAutoString theEndings("\n\"\'");
temp += aChar;
result=aScanner.ReadUntil(temp,theEndings,PR_TRUE,PR_FALSE);
result=aScanner.GetChar(aChar);
if(result==NS_OK) temp += aChar; // consume the character that stopped the scan
if(result==NS_OK) {
result=aScanner.GetChar(aChar);
if(result==NS_OK) temp += aChar; // consume the character that stopped the scan
}
}
else if(0<=theWhitespace2.BinarySearch(aChar)) {
static CWhitespaceToken theWS;