Diff for /Amaya/amaya/styleparser.c between versions 1.204 and 1.205

version 1.204, 2003/06/03 15:38:54 version 1.205, 2003/06/10 08:30:01
Line 204  static void CSSPrintError (char *msg, ch Line 204  static void CSSPrintError (char *msg, ch
         }          }
       CSSErrorsFound = TRUE;        CSSErrorsFound = TRUE;
       if (LineNumber < 0)        if (LineNumber < 0)
         fprintf (ErrFile, "  In Style attribute, %s \"%s\"\n", msg, value);          fprintf (ErrFile, "  In style attribute, %s \"%s\"\n", msg, value);
       else        else
         fprintf (ErrFile, "  line %d: %s \"%s\"\n", LineNumber+NewLineSkipped,          fprintf (ErrFile, "  line %d: %s \"%s\"\n", LineNumber+NewLineSkipped,
                  msg, value);                   msg, value);
Line 258  static char *SkipProperty (char *ptr) Line 258  static char *SkipProperty (char *ptr)
   *ptr = EOS;    *ptr = EOS;
 #ifdef CSS_WARNING  #ifdef CSS_WARNING
   if (*deb != EOS)    if (*deb != EOS)
     CSSPrintError ("CSS property ignored", deb);      CSSPrintError ("CSS property ignored:", deb);
 #endif /* CSS_WARNING */  #endif /* CSS_WARNING */
   *ptr = c;    *ptr = c;
   return (ptr);    return (ptr);
Line 4670  static char *ParseGenericSelector (char Line 4670  static char *ParseGenericSelector (char
               *cur++ = *selector++;                *cur++ = *selector++;
             /* close the word */              /* close the word */
             *cur++ = EOS;              *cur++ = EOS;
             CSSPrintError ("Not supported selector", deb);              CSSPrintError ("Selector not supported:", deb);
             DoApply = FALSE;                      DoApply = FALSE;        
           }            }
       }        }

Removed from v.1.204  
changed lines
  Added in v.1.205


Webmaster