From: Simon Ruderich Date: Fri, 19 Sep 2014 09:51:45 +0000 (+0200) Subject: bin/remove-continuation.pl: read from STDIN only X-Git-Url: https://ruderich.org/simon/gitweb/?a=commitdiff_plain;h=3f9630a6b73b6220c97852a4326c07d6f9187967;hp=ef5ed5972882ac0101310f22a01f93662248ef7f;p=config%2Fdotfiles.git bin/remove-continuation.pl: read from STDIN only --- 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+//;