[Mono-bugs] [Bug 56761][Nor] Changed - [Patch] Regex doesnt like A{,2} for repitition bounds

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Tue, 25 May 2004 14:40:22 -0400 (EDT)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by jackson@ximian.com.

http://bugzilla.ximian.com/show_bug.cgi?id=56761

--- shadow/56761	2004-05-12 13:28:46.000000000 -0400
+++ shadow/56761.tmp.29756	2004-05-25 14:40:22.000000000 -0400
@@ -1,13 +1,13 @@
 Bug#: 56761
 Product: Mono: Class Libraries
 Version: unspecified
 OS: unknown
 OS Details: 
-Status: NEW   
-Resolution: 
+Status: RESOLVED   
+Resolution: FIXED
 Severity: Unknown
 Priority: Normal
 Component: System
 AssignedTo: jackson@ximian.com                            
 ReportedBy: dave-gnome-bugs@earth.li               
 QAContact: mono-bugs@ximian.com
@@ -75,6 +75,13 @@
             Assertion.AssertEquals("Bounds3", false, reg.IsMatch("aaa"));
         }
 
 
 ------- Additional Comments From dave-mono@earth.li  2004-04-13 14:42 -------
 H
+
+------- Additional Comments From jackson@ximian.com  2004-05-25 14:40 -------
+From running your test case on MS it doesn't look like they set min to
+0 by default. Also negative mins can be specified. I've committed your
+patch and changed the 'default' min to be -1 and allowed negative
+numbers. So you will still have to use {0,2} to get what you want.
+Thanks for the report, test and patch!