use '==' consistently rather than '->' in examples
[ghc-base.git] / cbits / consUtils.c
index fa11000..7c50c7b 100644 (file)
@@ -25,13 +25,10 @@ set_console_buffering__(int fd, int cooked)
     DWORD flgs = ENABLE_LINE_INPUT | ENABLE_ECHO_INPUT;
     
     if ( (h = (HANDLE)_get_osfhandle(fd)) != INVALID_HANDLE_VALUE ) {
-        /* Only for console-connected Handles */
-      if ( GetFileType(h) == FILE_TYPE_CHAR ) {
        if ( GetConsoleMode(h,&st) &&
-             SetConsoleMode(h, cooked ? (st | flgs) : st & ~flgs)  ) {
+            SetConsoleMode(h, cooked ? (st | ENABLE_LINE_INPUT) : st & ~flgs)  ) {
            return 0;
-        }
-      }
+       }
     }
     return -1;
 }