[Winbash-checkins] CVS: winbash/lib/readline terminal.c,1.2,1.3
Brought to you by:
enricobrunetta,
xks
From: kevin s. <xk...@us...> - 2002-03-26 22:54:37
|
Update of /cvsroot/winbash/winbash/lib/readline In directory usw-pr-cvs1:/tmp/cvs-serv22718 Modified Files: terminal.c Log Message: added a comment explaining why i turned autowrap off. Index: terminal.c =================================================================== RCS file: /cvsroot/winbash/winbash/lib/readline/terminal.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- terminal.c 25 Mar 2002 16:17:15 -0000 1.2 +++ terminal.c 26 Mar 2002 22:54:34 -0000 1.3 @@ -398,7 +398,13 @@ #endif /* HACK_TERMCAP_MOTION */ _rl_terminal_can_insert = 0; -/* _rl_term_autowrap = 1; */ + + /* in the original win32 port of readline 4.2, this was + being set to 1 (autowrap was turned on), but it appeared + to be causing some display problems, so i turned it off. + this could probably use some re-evaluation. + - kevin seguin (03.26.2002). + */ _rl_term_autowrap = 0; #else /* !__MINGW32__ */ |