From fd4aa8cb7f389b1279d5d32955acbc14f4deac9f Mon Sep 17 00:00:00 2001 From: Reinhold Kainhofer Date: Sun, 10 Aug 2008 21:23:22 +0200 Subject: [PATCH] texi2html: Replace $_ by $line (missed this one instance) --- lilypond-texi2html.init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lilypond-texi2html.init b/lilypond-texi2html.init index 98d4f60fd3..0849c041d1 100644 --- a/lilypond-texi2html.init +++ b/lilypond-texi2html.init @@ -161,7 +161,7 @@ sub load_map_file ($) my $line; while ( $line = ) { # parse the tab-separated entries and insert them into the map: - chomp($_); + chomp($line); my @entries = split(/\t/, $line); if (scalar (@entries) == 3) { $node_map->{$entries[0]} = [$entries[1], $entries[2]]; -- 2.39.5