Diff for /Amaya/amaya/styleparser.c between versions 1.396 and 1.397

version 1.396, 2008/02/01 11:23:19 version 1.397, 2008/02/04 15:53:06
Line 385  static char *SkipValue (char *msg, char Line 385  static char *SkipValue (char *msg, char
     }      }
   /* print the skipped property */    /* print the skipped property */
   c = *ptr;    c = *ptr;
   *ptr = EOS;    if (c != EOS)
       *ptr = EOS;
   if (msg && *deb != EOS && *deb != ',')    if (msg && *deb != EOS && *deb != ',')
     CSSPrintError (msg, deb);      CSSPrintError (msg, deb);
   *ptr = c;    if (c != EOS)
       *ptr = c;
   return (ptr);    return (ptr);
 }  }
   

Removed from v.1.396  
changed lines
  Added in v.1.397


Webmaster