summaryrefslogtreecommitdiff
path: root/src/bin/psql/input.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2003-09-12 02:46:03 +0000
committerBruce Momjian <bruce@momjian.us>2003-09-12 02:46:03 +0000
commitcb8d423edb39f88cb5c76dc41ec63a732b17576c (patch)
tree3d58b88bcb86671986f9cd653538148228def632 /src/bin/psql/input.c
parent74e1bfe66da98b3a9e98e0d1d03e63cfb1ea108e (diff)
Remove WIN32 console.
Diffstat (limited to 'src/bin/psql/input.c')
-rw-r--r--src/bin/psql/input.c11
1 files changed, 1 insertions, 10 deletions
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;