summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bash_completion10
-rw-r--r--quilt.changes5
-rw-r--r--quilt/patches.in2
-rw-r--r--quilt/previous.in2
4 files changed, 12 insertions, 7 deletions
diff --git a/bash_completion b/bash_completion
index 3c0719f..0769a4e 100644
--- a/bash_completion
+++ b/bash_completion
@@ -132,7 +132,7 @@ _quilt_completion()
esac
;;
applied)
- COMPREPLY=( $( compgen -W "-n -h $(quilt applied)" -- $cur ) )
+ COMPREPLY=( $( compgen -W "-h $(quilt applied)" -- $cur ) )
;;
delete)
COMPREPLY=( $( compgen -W "-h $(quilt series)" -- $cur ) )
@@ -197,11 +197,11 @@ _quilt_completion()
new)
;;
next|previous)
- COMPREPLY=( $( compgen -W "-n $(quilt series)" -- $cur ) )
+ COMPREPLY=( $( compgen -W "$(quilt series)" -- $cur ) )
;;
patches)
_quilt_comfile
- COMPREPLY=( ${COMPREPLY[@]:-} $( compgen -W "-v -n -h" -- $cur ) )
+ COMPREPLY=( ${COMPREPLY[@]:-} $( compgen -W "-v -h" -- $cur ) )
;;
pop)
COMPREPLY=( $( compgen -W "-a -f -R -q -v -h $(quilt applied)" -- $cur ) )
@@ -241,7 +241,7 @@ _quilt_completion()
esac
;;
series)
- COMPREPLY=( $( compgen -W "-n -v -h" -- $cur ) )
+ COMPREPLY=( $( compgen -W "-v -h" -- $cur ) )
;;
setup)
case $prev in
@@ -260,7 +260,7 @@ _quilt_completion()
top)
;;
unapplied)
- COMPREPLY=( $( compgen -W "-n -h $(quilt series)" -- $cur ) )
+ COMPREPLY=( $( compgen -W "-h $(quilt series)" -- $cur ) )
;;
upgrade)
;;
diff --git a/quilt.changes b/quilt.changes
index 0a3a1f2..91cb509 100644
--- a/quilt.changes
+++ b/quilt.changes
@@ -1,4 +1,9 @@
-------------------------------------------------------------------
+Sun Jun 12 13:54:30 CEST 2005 - agruen@suse.de
+
+- Remove obsolete remnants of removed -n flag (Jean Delvare).
+
+-------------------------------------------------------------------
Thu Jun 9 14:47:13 CEST 2005 - agruen@suse.de
- Additional fixes to the rename command.
diff --git a/quilt/patches.in b/quilt/patches.in
index 44c03bd..9f680b6 100644
--- a/quilt/patches.in
+++ b/quilt/patches.in
@@ -66,7 +66,7 @@ scan_unapplied()
done
}
-options=`getopt -o nvh -- "$@"`
+options=`getopt -o vh -- "$@"`
if [ $? -ne 0 ]
then
diff --git a/quilt/previous.in b/quilt/previous.in
index 92b1326..ba0080b 100644
--- a/quilt/previous.in
+++ b/quilt/previous.in
@@ -32,7 +32,7 @@ patch in the series file.
fi
}
-options=`getopt -o nh -- "$@"`
+options=`getopt -o h -- "$@"`
if [ $? -ne 0 ]
then