summaryrefslogtreecommitdiff
path: root/src/bin/psql/input.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1999-12-10 03:59:30 +0000
committerBruce Momjian <bruce@momjian.us>1999-12-10 03:59:30 +0000
commit77a47299366e0246e3ec7419a9f8472281394b1e (patch)
treef68c0692a91f465a5b3b1f4e765f0a7e61e936c4 /src/bin/psql/input.c
parent97dec77fab612cfa285f6bd3dd5463a0d55526b2 (diff)
This should fix the \e (\p, \g, ...) behaviour on an empty query buffer.
Also, minor tweakage of tab completion, and I hope the output is flushed on time now. -- Peter Eisentraut Sernanders väg 10:115
Diffstat (limited to 'src/bin/psql/input.c')
-rw-r--r--src/bin/psql/input.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/bin/psql/input.c b/src/bin/psql/input.c
index 31fe4ce7737..250f1233ea6 100644
--- a/src/bin/psql/input.c
+++ b/src/bin/psql/input.c
@@ -32,11 +32,7 @@ gets_interactive(const char *prompt)
#ifdef USE_READLINE
if (useReadline)
- {
s = readline(prompt);
- fputc('\r', stdout);
- fflush(stdout);
- }
else
{
#endif