* fhandler_termios.cc (fhandler_termios::line_edit): Don't do special character

handling when stopped by CTRL-S.
* fhandler_tty.cc (bytes_available): Add arguments to debug_only_printf call.
* sigproc.cc (proc_subproc): Simplify some if logic.
This commit is contained in:
Christopher Faylor
2012-11-08 17:27:00 +00:00
parent 61746d6ae8
commit aaa812cbd0
4 changed files with 30 additions and 24 deletions

View File

@@ -67,7 +67,7 @@ bytes_available (DWORD& n, HANDLE h)
termios_printf ("PeekNamedPipe(%p) failed, %E", h);
n = 0;
}
debug_only_printf ("n %u, nleft %u, navail %u");
debug_only_printf ("n %u, nleft %u, navail %u", n, nleft, navail);
return succeeded;
}