A wad of changes to the parser. See my update

git-svn-id: svn://10.0.0.236/trunk@17433 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rickg%netscape.com
1999-01-09 01:09:02 +00:00
parent d67d163fe3
commit c8fc6237d4
92 changed files with 7354 additions and 8666 deletions

View File

@@ -28,7 +28,7 @@
#include "nsDebug.h"
#include "nsIDTD.h"
#include "nsToken.h"
#include "nsParserTypes.h"
#include "nsIParser.h"
/**
@@ -74,8 +74,8 @@ PRInt32 CTokenHandler::GetTokenType(void){
* @param
* @return
*/
PRInt32 CTokenHandler::operator()(CToken* aToken,nsIDTD* aDTD){
PRInt32 result=kNoError;
nsresult CTokenHandler::operator()(CToken* aToken,nsIDTD* aDTD){
nsresult result=NS_OK;
if((0!=aDTD) && (0!=mFP)) {
result=(*mFP)(aToken,aDTD);
}