diff options
Diffstat (limited to 'src/ptty.c')
-rw-r--r-- | src/ptty.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -10,6 +10,9 @@ static char rcsid[] = "$Id$"; /* * $Log$ + * Revision 1.11 2008/02/26 23:23:17 james + * *** empty log message *** + * * Revision 1.10 2008/02/24 00:42:53 james * *** empty log message *** * @@ -147,7 +150,7 @@ ptty_open (char *path, char *argv[]) client_termios (&ctermios); winsize.ws_row = VT102_ROWS; - winsize.ws_col = VT102_COLS; + winsize.ws_col = VT102_COLS_80; child = forkpty (&fd, name, &ctermios, &winsize); |