You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by ga...@apache.org on 2002/11/21 15:56:35 UTC

cvs commit: xml-xerces/c/src/xercesc/util/regx Token.cpp

gareth      2002/11/21 06:56:35

  Modified:    c/src/xercesc/util/regx Token.cpp
  Log:
  Fixed bug in Token::analyzeFirstCharacter so that . matches new line with head character optimisation enabled. As per discussion Jennifer Schachter had with Khaled.
  
  Revision  Changes    Path
  1.5       +4 -0      xml-xerces/c/src/xercesc/util/regx/Token.cpp
  
  Index: Token.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/util/regx/Token.cpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Token.cpp	4 Nov 2002 15:17:00 -0000	1.4
  +++ Token.cpp	21 Nov 2002 14:56:35 -0000	1.5
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.5  2002/11/21 14:56:35  gareth
  + * Fixed bug in Token::analyzeFirstCharacter so that . matches new line with head character optimisation enabled. As per discussion Jennifer Schachter had with Khaled.
  + *
    * Revision 1.4  2002/11/04 15:17:00  tng
    * C++ Namespace Support.
    *
  @@ -342,6 +345,7 @@
   			return FC_CONTINUE;
   		}
   	case T_DOT:
  +    return FC_ANY;
   	case T_EMPTY:
   	case T_ANCHOR:
   		return FC_CONTINUE;
  
  
  

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