Commit 9c577630 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

kernel32: Control characters should be returned while reading a line from console.

parent 5101cfc1
......@@ -247,9 +247,6 @@ static void WCEL_InsertChar(WCEL_Context* ctx, WCHAR c)
{
WCHAR buffer[2];
/* do not insert 0..31 control characters */
if (c < ' ' && c != '\t') return;
buffer[0] = c;
buffer[1] = 0;
WCEL_InsertString(ctx, buffer);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment