From: Reinhold Kainhofer Date: Sun, 10 Aug 2008 19:11:33 +0000 (+0200) Subject: texi2html: Fix variable name mixup, remove wrong local variable X-Git-Tag: release/2.11.58-1~32^2~69 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=c90da9c01462badfcdf9054f4a84fe6fbadd5264;p=lilypond.git texi2html: Fix variable name mixup, remove wrong local variable --- diff --git a/lilypond-texi2html.init b/lilypond-texi2html.init index 5c3589c13c..98d4f60fd3 100644 --- a/lilypond-texi2html.init +++ b/lilypond-texi2html.init @@ -411,7 +411,7 @@ sub lilypond_external_href($$$) { my $node = shift; my $node_id = shift; - my $node_xhtml_id = shift; + my $node_hxmlt_id = shift; my $file = shift; my $original_func = \&t2h_default_external_href; @@ -437,7 +437,7 @@ sub lilypond_external_href($$$) my $section_name_map = $translated_books{$map_name}; my $node_text = main::remove_texi($node); if (defined($section_name_map->{$node_text})) { - (my $node_id, $node_hxmlt_id) = @{$section_name_map->{$node_text}}; + ($node_id, $node_hxmlt_id) = @{$section_name_map->{$node_text}}; } else { print STDERR "Unable to find key '$node_text' in section_name_map for book $map_name\n"; }