Diff for /XML/SAX.c between versions 1.42 and 1.43

version 1.42, 2000/02/09 13:34:45 version 1.43, 2000/02/13 19:56:23
Line 185  internalSubset(void *ctx, const xmlChar Line 185  internalSubset(void *ctx, const xmlChar
             return;              return;
         }          }
   
           xmlPushInput(dtdCtxt, input);
   
         /*          /*
          * plug some encoding conversion routines here. !!!           * On the fly encoding conversion if needed
          */           */
         xmlPushInput(dtdCtxt, input);          enc = xmlDetectCharEncoding(dtdCtxt->input->cur, 4);
         enc = xmlDetectCharEncoding(dtdCtxt->input->cur);  
         xmlSwitchEncoding(dtdCtxt, enc);          xmlSwitchEncoding(dtdCtxt, enc);
   
         if (input->filename == NULL)          if (input->filename == NULL)

Removed from v.1.42  
changed lines
  Added in v.1.43


Webmaster