Diff for /XML/HTMLparser.c between versions 1.62 and 1.63

version 1.62, 2000/08/28 09:47:25 version 1.63, 2000/08/29 09:24:00
Line 1650  static int areBlanks(htmlParserCtxtPtr c Line 1650  static int areBlanks(htmlParserCtxtPtr c
     if (CUR != '<') return(0);      if (CUR != '<') return(0);
     if (ctxt->name == NULL)      if (ctxt->name == NULL)
         return(1);          return(1);
       if (!xmlStrcmp(ctxt->name, BAD_CAST"html"))
           return(1);
     if (!xmlStrcmp(ctxt->name, BAD_CAST"head"))      if (!xmlStrcmp(ctxt->name, BAD_CAST"head"))
         return(1);          return(1);
     if (!xmlStrcmp(ctxt->name, BAD_CAST"body"))      if (!xmlStrcmp(ctxt->name, BAD_CAST"body"))

Removed from v.1.62  
changed lines
  Added in v.1.63


Webmaster