Author: atsushi
Date: 2005-08-02 14:22:44 -0400 (Tue, 02 Aug 2005)
New Revision: 47926

Modified:
   trunk/mcs/mcs/ChangeLog
   trunk/mcs/mcs/location.cs
Log:
2005-08-02  Atsushi Enomoto  <[EMAIL PROTECTED]>

        * location.cs : tiny ToString() format fix.



Modified: trunk/mcs/mcs/ChangeLog
===================================================================
--- trunk/mcs/mcs/ChangeLog     2005-08-02 18:03:34 UTC (rev 47925)
+++ trunk/mcs/mcs/ChangeLog     2005-08-02 18:22:44 UTC (rev 47926)
@@ -1,5 +1,9 @@
 2005-08-02  Atsushi Enomoto  <[EMAIL PROTECTED]>
 
+       * location.cs : tiny ToString() format fix.
+
+2005-08-02  Atsushi Enomoto  <[EMAIL PROTECTED]>
+
        * statement.cs : oops, it was missing.
 
 2005-08-02  Atsushi Enomoto  <[EMAIL PROTECTED]>

Modified: trunk/mcs/mcs/location.cs
===================================================================
--- trunk/mcs/mcs/location.cs   2005-08-02 18:03:34 UTC (rev 47925)
+++ trunk/mcs/mcs/location.cs   2005-08-02 18:22:44 UTC (rev 47926)
@@ -244,10 +244,10 @@
                public override string ToString ()
                {
                        if (column_bits == 0)
-                               return Name + ": (" + Row + ")";
+                               return Name + "(" + Row + "):";
                        else
-                               return Name + ": (" + Row + ", " + Column +
-                                       (Column == column_mask ? "+)" : ")");
+                               return Name + "(" + Row + "," + Column +
+                                       (Column == column_mask ? "+):" : "):");
                }
                
                /// <summary>

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

Reply via email to