Add verbose, and fix cursor movement problem

This commit is contained in:
Keith Winstein
2011-08-14 00:09:52 -04:00
parent 90687448e0
commit cc07d4cf17
5 changed files with 21 additions and 6 deletions
+2 -3
View File
@@ -112,7 +112,7 @@ void client( const char *ip, int port, const char *key )
return;
}
/* XXX transmit initial resize */
/* XXX transmit initial resize and initialize */
/* local state */
Terminal::Complete terminal( window_size.ws_col, window_size.ws_row );
@@ -180,8 +180,7 @@ void client( const char *ip, int port, const char *key )
if ( (pollfds[ 0 ].revents | pollfds[ 1 ].revents)
& (POLLERR | POLLHUP | POLLNVAL) ) {
perror( "poll" );
// break;
break;
}
}
}