hillion     01/11/27 00:48:42

  Modified:    sources/org/apache/batik/css/parser Parser.java
  Log:
  Fixed a bug with consecutive @import rules.
  
  Revision  Changes    Path
  1.18      +2 -1      xml-batik/sources/org/apache/batik/css/parser/Parser.java
  
  Index: Parser.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/css/parser/Parser.java,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- Parser.java       2001/11/21 10:05:57     1.17
  +++ Parser.java       2001/11/27 08:48:42     1.18
  @@ -43,7 +43,7 @@
    * This class implements the {@link org.w3c.css.sac.Parser} interface.
    *
    * @author <a href="mailto:[EMAIL PROTECTED]";>Stephane Hillion</a>
  - * @version $Id: Parser.java,v 1.17 2001/11/21 10:05:57 hillion Exp $
  + * @version $Id: Parser.java,v 1.18 2001/11/27 08:48:42 hillion Exp $
    */
   public class Parser implements ExtendedParser, Localizable {
   
  @@ -194,6 +194,7 @@
                   if (current == LexicalUnits.IMPORT_SYMBOL) {
                       nextIgnoreSpaces();
                       parseImportRule();
  +                    nextIgnoreSpaces();
                   } else {
                       break;
                   }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to