summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--quilt/series.in11
1 files changed, 7 insertions, 4 deletions
diff --git a/quilt/series.in b/quilt/series.in
index d0db12f..a0768e3 100644
--- a/quilt/series.in
+++ b/quilt/series.in
@@ -95,10 +95,13 @@ then
[ -n "$opt_color" ] && setup_colors
top=$(top_patch)
- cat_patches "$color_series_app" \
- "${opt_verbose:++ }" $(patches_before $top)
- [ -n "$top" ] && cat_patches "$color_series_top" \
- "${opt_verbose:+= }" $top
+ if [ -n "$top" ]
+ then
+ cat_patches "$color_series_app" \
+ "${opt_verbose:++ }" $(applied_before $top)
+ cat_patches "$color_series_top" \
+ "${opt_verbose:+= }" $top
+ fi
cat_patches "$color_series_una" \
"${opt_verbose:+ }" $(patches_after $top)
else