Author: manjula
Date: 2005-03-31 03:47:55 -0500 (Thu, 31 Mar 2005)
New Revision: 42418

Modified:
   trunk/mcs/mbas/ChangeLog
   trunk/mcs/mbas/mb-tokenizer.cs
Log:
To fix make test failure


Modified: trunk/mcs/mbas/ChangeLog
===================================================================
--- trunk/mcs/mbas/ChangeLog    2005-03-31 08:40:30 UTC (rev 42417)
+++ trunk/mcs/mbas/ChangeLog    2005-03-31 08:47:55 UTC (rev 42418)
@@ -1,4 +1,6 @@
 2005-03-31 Manjula GHM <[EMAIL PROTECTED]>
+       *mb-tokenizer.cs:To fix make test failure
+2005-03-31 Manjula GHM <[EMAIL PROTECTED]>
        *mb-tokenizer.cs: Support declaration of decimal numbers with no digits 
before point like '.52' instead of '0.52'
 
 2005-03-29 Manjula GHM <[EMAIL PROTECTED]>

Modified: trunk/mcs/mbas/mb-tokenizer.cs
===================================================================
--- trunk/mcs/mbas/mb-tokenizer.cs      2005-03-31 08:40:30 UTC (rev 42417)
+++ trunk/mcs/mbas/mb-tokenizer.cs      2005-03-31 08:47:55 UTC (rev 42418)
@@ -682,7 +682,7 @@
                                        is_real = true;
                                        c = peekChar ();
                                } else {
-                       //              putback ('.');
+                                       putback ('.');
                                        number.Length -= 1;
                                        val = 
System.Int64.Parse(number.ToString());
                                        return integer_type_suffix('.');

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

Reply via email to