Merge with main
authorBryan O'Sullivan <bos@serpentine.com>
Tue, 11 Mar 2008 16:04:25 -0700
changeset 6233 14a4fdf9037f
parent 6232 59200a2de7bf (diff)
parent 6230 c7253d1a774e (current diff)
child 6234 a47462264906
Merge with main
--- a/contrib/bash_completion	Tue Mar 11 17:42:51 2008 -0500
+++ b/contrib/bash_completion	Tue Mar 11 16:04:25 2008 -0700
@@ -78,6 +78,7 @@
 _hg_status()
 {
     local files="$("$hg" status -n$1 . 2>/dev/null)"
+    local IFS=$'\n'
     COMPREPLY=(${COMPREPLY[@]:-} $(compgen -W '$files' -- "$cur"))
 }