Diff for /Amaya/amaya/XHTMLbuilder.c between versions 1.39 and 1.40

version 1.39, 2001/04/10 14:28:22 version 1.40, 2001/04/27 13:46:25
Line 1189  void               EndOfHTMLAttributeVal Line 1189  void               EndOfHTMLAttributeVal
                        TtaSetAttributeValue (currentAttribute, val,                         TtaSetAttributeValue (currentAttribute, val,
                                              lastAttrElement, context->doc);                                               lastAttrElement, context->doc);
                      }                       }
                    else if (usscanf (attrValue, "%d", &val))                     else if (sscanf (attrValue, "%d", &val))
                      TtaSetAttributeValue (currentAttribute, val,                       TtaSetAttributeValue (currentAttribute, val,
                                            lastAttrElement, context->doc);                                             lastAttrElement, context->doc);
                    else                     else
Line 1217  void               EndOfHTMLAttributeVal Line 1217  void               EndOfHTMLAttributeVal
                            if (lang == 0)                             if (lang == 0)
                              {                               {
                                sprintf (msgBuffer,                                 sprintf (msgBuffer,
                                          "warning - unsupported language: %s",                                          "warning - unsupported language: %s",
                                          attrValue);                                          attrValue);
                                if (isXML)                                 if (isXML)
                                  XmlParseError (errorParsing, msgBuffer, 0);                                   XmlParseError (errorParsing, msgBuffer, 0);
                                else                                 else

Removed from v.1.39  
changed lines
  Added in v.1.40


Webmaster