summaryrefslogtreecommitdiffstats
path: root/bash_completion
diff options
context:
space:
mode:
authorJean Delvare <khali@linux-fr.org>2006-01-29 20:20:13 +0000
committerJean Delvare <khali@linux-fr.org>2006-01-29 20:20:13 +0000
commite30ad6aab9d202ed5eda5994456b85bc28e5fbd5 (patch)
treeaa8bfd210b7638e65c3b81a8058d05f8f6a3cb08 /bash_completion
parent6600acc48de524491c1710d51ab039c3bd645499 (diff)
downloadquilt-e30ad6aab9d202ed5eda5994456b85bc28e5fbd5.tar.gz
- quilt/files.in, bash_completion: Command files only works on applied
patches.
Diffstat (limited to 'bash_completion')
-rw-r--r--bash_completion2
1 files changed, 1 insertions, 1 deletions
diff --git a/bash_completion b/bash_completion
index 9939a83..b17240f 100644
--- a/bash_completion
+++ b/bash_completion
@@ -175,7 +175,7 @@ _quilt_completion()
COMPREPLY=( $( compgen -W "$(quilt applied)" -- $cur ) )
;;
*)
- COMPREPLY=( $( compgen -W "-a -l -v -h --combine $(quilt series)" -- $cur ) )
+ COMPREPLY=( $( compgen -W "-a -l -v -h --combine $(quilt applied)" -- $cur ) )
;;
esac
;;