summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dunstan2008-05-18 06:50:08 +0000
committerAndrew Dunstan2008-05-18 06:50:08 +0000
commit7f55030d45d7e4b762a1a2deb9512c58f721e75f (patch)
treebe6d3d6d5d446473928fb113bd47d9e9f04987e0
parente0faec36742a499d9bac17a0d86995ceab20f4e0 (diff)
Remove old kluge put in to allow Windows regression tests to succeed, and now
found to have been made necessary by our skipping tty detection on Windows. Now that we are doing tty detection on Windows the kluge is unnecessary and wrong.
-rw-r--r--src/bin/psql/print.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/bin/psql/print.c b/src/bin/psql/print.c
index dcd1a10069..efcc33c1fe 100644
--- a/src/bin/psql/print.c
+++ b/src/bin/psql/print.c
@@ -918,13 +918,7 @@ print_aligned_text(const printTableContent *cont, FILE *fout)
fprintf(fout, "%s\n", f->data);
}
- /*
- * for some reason MinGW (and MSVC) outputs an extra newline, so this
- * suppresses it
- */
-#ifndef WIN32
fputc('\n', fout);
-#endif
}
/* clean up */