2008-08-12 Gert Driesen <drieseng@users.sourceforge.net>
authorMiguel de Icaza <miguel@gnome.org>
Wed, 20 Aug 2008 05:06:13 +0000 (05:06 -0000)
committerMiguel de Icaza <miguel@gnome.org>
Wed, 20 Aug 2008 05:06:13 +0000 (05:06 -0000)
* corlib.dll.sources: Removed ReflectionSerializationHolder.cs.

svn path=/trunk/mcs/; revision=111078

mcs/class/corlib/System/ChangeLog
mcs/class/corlib/System/ConsoleDriver.cs
mcs/class/corlib/System/TermInfoDriver.cs

index 8354f45d5bfe4fb39d742887d2d17fd86b101f5f..a57712f4c5dfcfe60ca70cab4ea2275ba06f764f 100644 (file)
@@ -1,3 +1,8 @@
+2008-08-20  Miguel de Icaza  <miguel@novell.com>
+
+       * ConsoleDriver.cs: TtySetup now takes an extra argument: the
+       keypadXmit string.
+
 2008-08-16  Gert Driesen  <drieseng@users.sourceforge.net>
 
        * Exception.cs: Fixed value of HResult to match MS. Added support for
index 5467e82a825e56f907a1333c217eb277d0c0a6b6..5b093f9461174984a90746bff1c8477fb401cd12 100644 (file)
@@ -265,7 +265,7 @@ namespace System {
                internal static extern int InternalKeyAvailable (int ms_timeout);
 
                [MethodImplAttribute(MethodImplOptions.InternalCall)]
-               internal static extern bool TtySetup (string teardown, out byte verase, out byte vsusp, out byte intr);
+               internal static extern bool TtySetup (string keypadXmit, string teardown, out byte verase, out byte vsusp, out byte intr);
 
                [MethodImplAttribute(MethodImplOptions.InternalCall)]
                internal static extern bool SetEcho (bool wantEcho);
index 85c2ccd829ee3f7d02e519ddb9a10c7400eba096..92b43831a05dd94eab8bfb3014535c69df921870 100644 (file)
@@ -200,7 +200,7 @@ namespace System {
                        if (resetColors != null)
                                endString += resetColors;
 
-                       if (!ConsoleDriver.TtySetup (endString, out verase, out vsusp, out intr))
+                       if (!ConsoleDriver.TtySetup (keypadXmit, endString, out verase, out vsusp, out intr))
                                throw new IOException ("Error initializing terminal.");
 
                        stdin = new StreamReader (Console.OpenStandardInput (0), Console.InputEncoding);