From 76b114953dfdf92012d14983e5f0876c6bf66d3a Mon Sep 17 00:00:00 2001 From: Jean Delvare Date: Fri, 3 Feb 2006 12:05:30 +0000 Subject: - bash_completion: Code refactoring, indentation fixes. --- bash_completion | 20 ++++++-------------- quilt.changes | 5 +++++ 2 files changed, 11 insertions(+), 14 deletions(-) diff --git a/bash_completion b/bash_completion index 098d89f..75f1568 100644 --- a/bash_completion +++ b/bash_completion @@ -157,7 +157,6 @@ _quilt_completion() COMPREPLY=( $( compgen -W "$(quilt applied)" -- $cur ) ) ;; --diff|-U|-C) - COMREPLY=( ) ;; *) _filedir @@ -189,9 +188,6 @@ _quilt_completion() ;; esac ;; - fork) - COMPREPLY=( ) - ;; graph) case $prev in -T) @@ -231,8 +227,6 @@ _quilt_completion() mail) COMPREPLY=( $( compgen -W "-m --prefix --mbox --send --sender --from --subject --to --cc --bcc" -- $cur ) ) ;; - new) - ;; next|previous) COMPREPLY=( $( compgen -W "$(quilt series)" -- $cur ) ) ;; @@ -269,7 +263,7 @@ _quilt_completion() ;; esac ;; - rename) + rename) case $prev in -P) COMPREPLY=( $( compgen -W "$(quilt series)" -- $cur ) ) @@ -279,10 +273,10 @@ _quilt_completion() ;; esac ;; - series) + series) COMPREPLY=( $( compgen -W "-v -h" -- $cur ) ) ;; - setup) + setup) case $prev in -d) _filedir -d @@ -293,15 +287,13 @@ _quilt_completion() ;; esac ;; - snapshot) + snapshot) COMPREPLY=( $( compgen -W "-d -h" -- $cur ) ) ;; - top) - ;; - unapplied) + unapplied) COMPREPLY=( $( compgen -W "-h $(quilt series)" -- $cur ) ) ;; - upgrade) + fork|new|top|upgrade) ;; esac return 0 diff --git a/quilt.changes b/quilt.changes index 715edef..731809c 100644 --- a/quilt.changes +++ b/quilt.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Feb 3 13:04:52 CET 2006 - khali@linux-fr.org + +- bash_completion: Code refactoring, indentation fixes. + ------------------------------------------------------------------- Fri Feb 3 13:03:10 CET 2006 - khali@linux-fr.org -- cgit