[Winbash-checkins] CVS: winbash/lib/readline complete.c,1.7,1.8
Brought to you by:
enricobrunetta,
xks
From: kevin s. <xk...@us...> - 2002-03-26 13:31:12
|
Update of /cvsroot/winbash/winbash/lib/readline In directory usw-pr-cvs1:/tmp/cvs-serv10670 Modified Files: complete.c Log Message: changed default value of _rl_completion_case_fold back to what is was in the original readline 4.2 win32 patch. to get case-insensitive completion, add the following to ~/.inputrc: set completion-ignore-case on Index: complete.c =================================================================== RCS file: /cvsroot/winbash/winbash/lib/readline/complete.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- complete.c 25 Mar 2002 10:45:42 -0000 1.7 +++ complete.c 26 Mar 2002 13:31:08 -0000 1.8 @@ -126,7 +126,7 @@ #if defined (__MSDOS__) && !defined (__DJGPP__) int _rl_completion_case_fold = 1; #else -int _rl_completion_case_fold = 1; +int _rl_completion_case_fold; #endif /* Global variables available to applications using readline. */ |