You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by er...@apache.org on 2006/08/16 22:38:54 UTC

svn commit: r432027 - /directory/branches/shared/0.9.5/ldap/src/main/antlr/ACIItem.g

Author: ersiner
Date: Wed Aug 16 13:38:54 2006
New Revision: 432027

URL: http://svn.apache.org/viewvc?rev=432027&view=rev
Log:
Made the SP token accept any type of whitespace.
This is possibly a fix for DIRSERVER-603.

Modified:
    directory/branches/shared/0.9.5/ldap/src/main/antlr/ACIItem.g

Modified: directory/branches/shared/0.9.5/ldap/src/main/antlr/ACIItem.g
URL: http://svn.apache.org/viewvc/directory/branches/shared/0.9.5/ldap/src/main/antlr/ACIItem.g?rev=432027&r1=432026&r2=432027&view=diff
==============================================================================
--- directory/branches/shared/0.9.5/ldap/src/main/antlr/ACIItem.g (original)
+++ directory/branches/shared/0.9.5/ldap/src/main/antlr/ACIItem.g Wed Aug 16 13:38:54 2006
@@ -1427,7 +1427,7 @@
 
 SEP : ',' ;
 
-SP : ' ' ;
+SP : ' ' | '\t' | '\n' { newline(); } | '\r' ;
 
 COLON : ':' ;