summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean Delvare <khali@linux-fr.org>2005-09-11 08:36:13 +0000
committerJean Delvare <khali@linux-fr.org>2005-09-11 08:36:13 +0000
commitc86ba0ff802d2fe3bfb41fabd59687760a306fd1 (patch)
treeed782b7dec0cf26961e56a2cbee127f4c8b0a8f6
parente4ff03650d4996b073e9a21106568535f99435a1 (diff)
downloadquilt-c86ba0ff802d2fe3bfb41fabd59687760a306fd1.tar.gz
- quilt/annotate.in: Update help text to mention that only applied patches
will show (Andreas Gruenbacher). Optimize by using applied_patches() instead of cat_series().
-rw-r--r--quilt.changes7
-rw-r--r--quilt/annotate.in4
2 files changed, 9 insertions, 2 deletions
diff --git a/quilt.changes b/quilt.changes
index 15af408..461421a 100644
--- a/quilt.changes
+++ b/quilt.changes
@@ -1,4 +1,11 @@
-------------------------------------------------------------------
+Sun Sep 11 10:32:28 CEST 2005 - khali@linux-fr.org
+
+- quilt/annotate.in: Update help text to mention that only applied
+ patches will show (Andreas Gruenbacher). Optimize by using
+ applied_patches() instead of cat_series().
+
+-------------------------------------------------------------------
Fri Sep 9 20:19:39 CEST 2005 - khali@linux-fr.org
- test/*.test: Fix sed compatibility issues: do not use inplace
diff --git a/quilt/annotate.in b/quilt/annotate.in
index e26bfa2..2c2797c 100644
--- a/quilt/annotate.in
+++ b/quilt/annotate.in
@@ -24,7 +24,7 @@ usage()
then
printf $"
Print an annotated listing of the specified file showing which
-patches modify which lines.
+patches modify which lines. Only applied patches are included.
"
exit 0
else
@@ -115,7 +115,7 @@ then
fi
opt_file="$SUBDIR$1"
-for patch in $(cat_series); do
+for patch in $(applied_patches); do
if [ -f "$(backup_file_name $patch "$opt_file")" ]
then
patches[${#patches[@]}]="$patch"