]> granicus.if.org Git - postgresql/blobdiff - src/port/sprompt.c
Fix whitespace
[postgresql] / src / port / sprompt.c
index 9a6415cc86ac341e17121ab7e06131504fa5ada5..c549a6f0bd87809da7dc58fbdefd6a88174e0bdd 100644 (file)
@@ -66,7 +66,7 @@ simple_prompt(const char *prompt, int maxlen, bool echo)
         * automatically converts text between these code pages when writing to a
         * console.  To identify such file descriptors, it calls GetConsoleMode()
         * on the underlying HANDLE, which in turn requires GENERIC_READ access on
-        * the HANDLE.  Opening termout in mode "w+" allows that detection to
+        * the HANDLE.  Opening termout in mode "w+" allows that detection to
         * succeed.  Otherwise, write() would not recognize the descriptor as a
         * console, and non-ASCII characters would display incorrectly.
         *
@@ -86,11 +86,12 @@ simple_prompt(const char *prompt, int maxlen, bool echo)
 #endif
        if (!termin || !termout
 #ifdef WIN32
+
        /*
         * Direct console I/O does not work from the MSYS 1.0.10 console.  Writes
         * reach nowhere user-visible; reads block indefinitely.  XXX This affects
         * most Windows terminal environments, including rxvt, mintty, Cygwin
-        * xterm, Cygwin sshd, and PowerShell ISE.  Switch to a more-generic test.
+        * xterm, Cygwin sshd, and PowerShell ISE.      Switch to a more-generic test.
         */
                || (getenv("OSTYPE") && strcmp(getenv("OSTYPE"), "msys") == 0)
 #endif