From 3f9630a6b73b6220c97852a4326c07d6f9187967 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Fri, 19 Sep 2014 11:51:45 +0200 Subject: [PATCH] bin/remove-continuation.pl: read from STDIN only --- bin/remove-continuation.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/remove-continuation.pl b/bin/remove-continuation.pl index df36d33..3deb7d7 100755 --- a/bin/remove-continuation.pl +++ b/bin/remove-continuation.pl @@ -24,7 +24,7 @@ use warnings; my $continuation = 0; -while (<>) { +while () { # Remove leading whitespace if the last line was a line continuation. if ($continuation) { s/^\s+//; -- 2.44.1