Update of /cvsroot/plib/plib/src/psl
In directory usw-pr-cvs1:/tmp/cvs-serv22648/plib/src/psl
Modified Files:
pslExpression.cxx
Log Message:
Fixed bug in PSL expression handler.
Index: pslExpression.cxx
===================================================================
RCS file: /cvsroot/plib/plib/src/psl/pslExpression.cxx,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- pslExpression.cxx 14 Sep 2002 06:12:32 -0000 1.12
+++ pslExpression.cxx 14 Sep 2002 20:52:42 -0000 1.13
@@ -40,10 +40,10 @@
getToken ( c ) ;
- if ( strcmp ( c, ")" ) == 0 )
+ if ( strcmp ( c, ")" ) != 0 )
{
ungetToken ( c ) ;
- return error ( "Missing ')' (found '%s')", c );
+ return error ( "Missing ')' after expression (found '%s')", c );
}
return TRUE ;
|