Author: raja
Date: 2005-09-23 05:34:08 -0400 (Fri, 23 Sep 2005)
New Revision: 50566

Modified:
   trunk/mcs/class/System/System.Text.RegularExpressions/ChangeLog
   trunk/mcs/class/System/System.Text.RegularExpressions/interpreter.cs
Log:
* interpreter.cs (Interpreter.Eval) [OpCode.Until]: Invert the
sense of a test to reflect the code re-organization.


Modified: trunk/mcs/class/System/System.Text.RegularExpressions/ChangeLog
===================================================================
--- trunk/mcs/class/System/System.Text.RegularExpressions/ChangeLog     
2005-09-23 09:31:03 UTC (rev 50565)
+++ trunk/mcs/class/System/System.Text.RegularExpressions/ChangeLog     
2005-09-23 09:34:08 UTC (rev 50566)
@@ -1,3 +1,8 @@
+2005-09-23  Raja R Harinath  <[EMAIL PROTECTED]>
+
+       * interpreter.cs (Interpreter.Eval) [OpCode.Until]: Invert the
+       sense of a test to reflect the code re-organization.
+
 2005-09-22  Raja R Harinath  <[EMAIL PROTECTED]>
 
        Fix #72152, #72989.

Modified: trunk/mcs/class/System/System.Text.RegularExpressions/interpreter.cs
===================================================================
--- trunk/mcs/class/System/System.Text.RegularExpressions/interpreter.cs        
2005-09-23 09:31:03 UTC (rev 50565)
+++ trunk/mcs/class/System/System.Text.RegularExpressions/interpreter.cs        
2005-09-23 09:34:08 UTC (rev 50566)
@@ -489,7 +489,7 @@
 
                                                        // ... then match more
                                                        this.repeat = current;
-                                                       if (!current.IsMaximum)
+                                                       if (current.IsMaximum)
                                                                return false;
                                                        ++ current.Count;
                                                        current.Start = ptr;

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to