ruderich.org/simon
/
blhc
/
blhc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ceef2f8
)
Fix indentation
author
Simon Ruderich
<simon@ruderich.org>
Sat, 28 Nov 2020 11:07:29 +0000
(12:07 +0100)
committer
Simon Ruderich
<simon@ruderich.org>
Sat, 28 Nov 2020 11:07:29 +0000
(12:07 +0100)
bin/blhc
patch
|
blob
|
history
diff --git
a/bin/blhc
b/bin/blhc
index 52a846957fae19d5d5f2018725dfd985b39420ee..eacf541b40c0891e6c59ff4f422b0e976ad99e68 100755
(executable)
--- a/
bin/blhc
+++ b/
bin/blhc
@@
-354,10
+354,10
@@
sub split_line {
}
return map {
-
# Ensure newline at the line end - necessary for
-
# correct parsing later.
-
$_ =~ s/\s+$//;
-
$_ .= "\n";
+ # Ensure newline at the line end - necessary for
+ # correct parsing later.
+ $_ =~ s/\s+$//;
+ $_ .= "\n";
} @work;
}