From 7f55030d45d7e4b762a1a2deb9512c58f721e75f Mon Sep 17 00:00:00 2001 From: Andrew Dunstan Date: Sun, 18 May 2008 06:50:08 +0000 Subject: [PATCH] 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. --- src/bin/psql/print.c | 6 ------ 1 file changed, 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 */ -- 2.39.5