From 1612ec50fbac4344f365fb31a15240834c01eaeb Mon Sep 17 00:00:00 2001 From: axel Date: Wed, 13 Sep 2006 09:14:09 +1000 Subject: [PATCH] Fix bug in __fish_complete_subcommand, reported by Xavier Douville darcs-hash:20060912231409-ac50b-c573d798d9d1abc197fcf50f3b52df2e44e1f70e.gz --- share/functions/__fish_complete_subcommand.fish | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/share/functions/__fish_complete_subcommand.fish b/share/functions/__fish_complete_subcommand.fish index 60ecc35a9..4af0e1c90 100644 --- a/share/functions/__fish_complete_subcommand.fish +++ b/share/functions/__fish_complete_subcommand.fish @@ -1,4 +1,5 @@ function __fish_complete_subcommand -d "Complete subcommand" + set -l res "" set -l had_cmd 0 set -l cmd (commandline -cop) (commandline -ct) @@ -29,8 +30,8 @@ function __fish_complete_subcommand -d "Complete subcommand" end end end - - printf "%s\n" (commandline -ct)(complete -C $res) + + printf "%s\n" (commandline -ct)(complete -C$res) end