You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by mm...@apache.org on 2001/11/02 20:26:56 UTC

cvs commit: xml-xalan/java/src/org/apache/xalan/processor StylesheetPIHandler.java

mmidy       01/11/02 11:26:56

  Modified:    java/src/org/apache/xalan/processor StylesheetPIHandler.java
  Log:
  Bugzilla 4575: Add the EOL character to the list of token delimiters.
  
  Revision  Changes    Path
  1.12      +1 -1      xml-xalan/java/src/org/apache/xalan/processor/StylesheetPIHandler.java
  
  Index: StylesheetPIHandler.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/processor/StylesheetPIHandler.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- StylesheetPIHandler.java	2001/02/12 19:31:13	1.11
  +++ StylesheetPIHandler.java	2001/11/02 19:26:56	1.12
  @@ -185,7 +185,7 @@
         String media = null;  // CDATA #IMPLIED
         String charset = null;  // CDATA #IMPLIED
         boolean alternate = false;  // (yes|no) "no"
  -      StringTokenizer tokenizer = new StringTokenizer(data, " \t=", true);
  +      StringTokenizer tokenizer = new StringTokenizer(data, " \t=\n", true);
         boolean lookedAhead = false; 
         Source source = null;
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xalan-cvs-help@xml.apache.org