aboutsummaryrefslogtreecommitdiff
path: root/src/bin/psql/input.c
diff options
context:
space:
mode:
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 0dec1974001..085c95c6351 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.30 2003/09/05 02:31:10 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/bin/psql/input.c,v 1.31 2003/09/12 02:40:09 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;