diff options
Diffstat (limited to 'cmdedit.c')
-rw-r--r-- | cmdedit.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -136,11 +136,14 @@ static void win_changed(int nsig) struct winsize win = { 0, 0, 0, 0 }; static __sighandler_t previous_SIGWINCH_handler; /* for reset */ - /* emulate signal call if not called as a sig handler */ + /* emulate signal call if not called as a sig handler */ if(nsig == -SIGWINCH || nsig == SIGWINCH) { ioctl(0, TIOCGWINSZ, &win); if (win.ws_col > 0) { cmdedit_setwidth( win.ws_col, nsig == SIGWINCH ); + } else { + /* Default to 79 if their console doesn't want to share */ + cmdedit_setwidth( 79, nsig == SIGWINCH ); } } |