aboutsummaryrefslogtreecommitdiffhomepage
path: root/common.c
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2007-01-19 02:27:00 +1000
committerGravatar axel <axel@liljencrantz.se>2007-01-19 02:27:00 +1000
commit421aff7d67a82aa217550fd428fcf215f55ef4dc (patch)
tree796c177aab2f05033d64e69e2e47620e469fd4c8 /common.c
parent9e7094adfcbb2cfb63f1ea6ac587354dd3463e48 (diff)
Make command specific completions handle quoted and otherwise escaped tokens better by making sure that the output from the commandline builtin is properly unescaped
darcs-hash:20070118162700-ac50b-cd93d9a6aff5bb7629a790d60b241000eb1d0ac0.gz
Diffstat (limited to 'common.c')
-rw-r--r--common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common.c b/common.c
index a28bff46..1e42cb73 100644
--- a/common.c
+++ b/common.c
@@ -1303,7 +1303,7 @@ wchar_t *unescape( const wchar_t * orig, int flags )
free( in );
return 0;
}
-
+
in[out_pos]=L'\0';
return in;
}