summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--quilt/scripts/remove-trailing-ws.in5
1 files changed, 2 insertions, 3 deletions
diff --git a/quilt/scripts/remove-trailing-ws.in b/quilt/scripts/remove-trailing-ws.in
index c6c2194..9e40707 100644
--- a/quilt/scripts/remove-trailing-ws.in
+++ b/quilt/scripts/remove-trailing-ws.in
@@ -88,14 +88,13 @@ while (<>) {
my $last_line = defined $2 ? $2 : $1;
while ($line_number <= $last_line) {
$_ = <>;
- defined $_
- or die sprintf(_("%s: I'm confused.\n"), $0);
+ defined $_ or last;
if (s/(^[+!] .*?)[ \t]+$/$1/) {
push @{$files{$file}}, $line_number;
}
$line_number++;
print unless $opt_n;
- last if (/^\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*$/);
+ last if (/^\*\*\*[* ]/);
}
} elsif (/^--- (.+?)(?:[ \t][^\t]*)?$/) {
$file = $1;