]> granicus.if.org Git - postgresql/blobdiff - src/bin/psql/print.c
Use isatty() test for pager on Win32; not sure why it was disabled for
[postgresql] / src / bin / psql / print.c
index ad57cae9a8e501f6b44bf59e4669ba17dbf7600d..b0cf7f5bdb1c6ee6c1151426b10494e0a3abd5cb 100644 (file)
@@ -3,7 +3,7 @@
  *
  * Copyright (c) 2000-2008, PostgreSQL Global Development Group
  *
- * $PostgreSQL: pgsql/src/bin/psql/print.c,v 1.105 2008/05/17 21:40:44 momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/print.c,v 1.106 2008/05/17 23:34:44 momjian Exp $
  */
 #include "postgres_fe.h"
 
@@ -1912,13 +1912,7 @@ FILE *
 PageOutput(int lines, unsigned short int pager)
 {
        /* check whether we need / can / are supposed to use pager */
-       if (pager
-#ifndef WIN32
-               &&
-               isatty(fileno(stdin)) &&
-               isatty(fileno(stdout))
-#endif
-               )
+       if (pager && isatty(fileno(stdin)) && isatty(fileno(stdout)))
        {
                const char *pagerprog;
                FILE       *pagerpipe;