[Winbash-checkins] CVS: winbash bashline.c,1.5,1.6
Brought to you by:
enricobrunetta,
xks
From: kevin s. <xk...@us...> - 2002-03-25 11:22:04
|
Update of /cvsroot/winbash/winbash In directory usw-pr-cvs1:/tmp/cvs-serv7346 Modified Files: bashline.c Log Message: tell readline that spaces in filenames need quoting (there are likely other characters too....) Index: bashline.c =================================================================== RCS file: /cvsroot/winbash/winbash/bashline.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- bashline.c 25 Mar 2002 10:50:59 -0000 1.5 +++ bashline.c 25 Mar 2002 11:22:00 -0000 1.6 @@ -280,7 +280,7 @@ /* orig_quote_filename = rl_filename_quoting_function; */ /* rl_filename_quoting_function = bash_quote_filename; */ /* rl_filename_dequoting_function = bash_dequote_filename; */ -/* rl_filename_quote_characters = " "; */ + rl_filename_quote_characters = " "; /* Need to modify this from the default; `$', `{', `\', and ``' are not word break characters. */ |