From a116f435ce8b97fdbea9fd25f91517b1fb850881 Mon Sep 17 00:00:00 2001 From: Elijah Saxon Date: Wed, 19 Oct 2005 05:17:53 +0000 Subject: fixed many bugs in rdiff.helper added more verbage to ninjahelper added some IFS=$'' to easydialog (this allows you to pass through blank lines). --- handlers/easydialog.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'handlers/easydialog.sh') diff --git a/handlers/easydialog.sh b/handlers/easydialog.sh index 5d70653..18cb7c3 100644 --- a/handlers/easydialog.sh +++ b/handlers/easydialog.sh @@ -237,7 +237,12 @@ formDisplay() { done ) | xargs $DIALOG 2> $temp local status=$? - [ $status = 0 ] && REPLY=`cat $temp` + + if [ $status = 0 ]; then + IFS=$'' + REPLY=`cat $temp` + IFS=$' \t\n' + fi rm -f $temp return $status } -- cgit v1.2.3