From cb8d423edb39f88cb5c76dc41ec63a732b17576c Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Fri, 12 Sep 2003 02:46:03 +0000 Subject: Remove WIN32 console. --- src/bin/psql/input.c | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'src/bin/psql/input.c') diff --git a/src/bin/psql/input.c b/src/bin/psql/input.c index 91fa5918249..58ef6ce387c 100644 --- a/src/bin/psql/input.c +++ b/src/bin/psql/input.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2003, PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/input.c,v 1.28.2.1 2003/09/07 04:37:04 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/input.c,v 1.28.2.2 2003/09/12 02:46:03 momjian Exp $ */ #include "postgres_fe.h" #include "input.h" @@ -99,15 +99,6 @@ gets_interactive(const char *prompt) else s = gets_basic(prompt); -#ifdef WIN32 - /* - * translate DOS console character set into ANSI, needed e.g. for German - * umlauts - */ - if (GetVariableBool(pset.vars, "WIN32_CONSOLE")) - OemToChar(s, s); -#endif - if (useHistory && s && s[0]) { enum histcontrol HC; -- cgit v1.2.3