Hi,

this patch has been applied in quilt 0.50 but it's missing a fix for quilt
push.

The same must be done to hide errors from "quilt unapplied" in the
completion file.

Martin, can you commit the attached one-liner upstream ?

Thank you.

Cheers,
-- 
Raphaël Hertzog ◈ Debian Developer

Pre-order a copy of the Debian Administrator's Handbook and help
liberate it: http://debian-handbook.info/liberation/
diff --git a/bash_completion b/bash_completion
index 2d31e76..19736cb 100644
--- a/bash_completion
+++ b/bash_completion
@@ -239,7 +239,7 @@ _quilt_completion()
           COMPREPLY=( $( compgen -W "-a -f -R -q -v -h $(quilt applied 
2>/dev/null)" -- $cur ) )
           ;;
        push)
-          COMPREPLY=( $( compgen -W "-a -f -q -v -h --leave-rejects 
--interactive --color $(quilt unapplied)" -- $cur ) )
+          COMPREPLY=( $( compgen -W "-a -f -q -v -h --leave-rejects 
--interactive --color $(quilt unapplied 2>/dev/null)" -- $cur ) )
           ;;
        refresh)
           case $prev in

Reply via email to