diff options
Diffstat (limited to 'v4l/scripts/hghead.pl')
-rwxr-xr-x | v4l/scripts/hghead.pl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/v4l/scripts/hghead.pl b/v4l/scripts/hghead.pl index 2450ad136..0f086294d 100755 --- a/v4l/scripts/hghead.pl +++ b/v4l/scripts/hghead.pl @@ -131,6 +131,12 @@ while ($line = <IN>) { next; } + # Keep review lines together with the signatures + if ($line =~ m/^\[.*\@.*\:.*\]\n/) { + $signed="$signed$line"; + next; + } + if ($tag =~ m/changeset:\s*(.*)\n/) { $num=$1; } |