From 08eb92707a81ea4e611169e7592a58a4557a297b Mon Sep 17 00:00:00 2001 From: axel Date: Sat, 24 Feb 2007 02:36:30 +1000 Subject: [PATCH] Fix paran mismatch bug in umount completions that popped up when dropping the N_ script darcs-hash:20070223163630-ac50b-efa267645ce113eab089d49d240bb3e00e9f07e5.gz --- share/completions/umount.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/completions/umount.fish b/share/completions/umount.fish index 1705ddcfd..8d799549b 100644 --- a/share/completions/umount.fish +++ b/share/completions/umount.fish @@ -5,7 +5,7 @@ # # Find all mountpoints # -complete -c umount --description "Mount point") -x -a '(cat /etc/mtab | cut -d " " -f 1-2|tr " " \n|sed -e "s/[0-9\.]*:\//\//"|sgrep "^/"' +complete -c umount --description "Mount point" -x -a '(cat /etc/mtab | cut -d " " -f 1-2|tr " " \n|sed -e "s/[0-9\.]*:\//\//"|sgrep "^/")' complete -c umount -s V --description "Display version and exit" complete -c umount -s h --description "Display help and exit"