From: Patrick McCarty Date: Thu, 4 Sep 2008 08:01:31 +0000 (-0700) Subject: Fixed init file to reflect texi2html changes X-Git-Tag: release/2.11.58-1~32^2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=52ecddd2dd8c79a39a3ee46d85ddbeb232fe67eb;p=lilypond.git Fixed init file to reflect texi2html changes * The CSS_LINES variable is no longer modified in texi2html. Instead, its value is stored in Texi2HTML::THISDOC{'CSS_LINES'}. This patch is a simple search and replace. Signed-off-by: Patrick McCarty --- diff --git a/lilypond-texi2html.init b/lilypond-texi2html.init index e208e5933b..df50fe24c7 100644 --- a/lilypond-texi2html.init +++ b/lilypond-texi2html.init @@ -233,19 +233,19 @@ sub lilypond_css_lines ($$) { my $import_lines = shift; my $rule_lines = shift; - return if (defined($CSS_LINES)); + return if (defined($Texi2HTML::THISDOC{'CSS_LINES'})); if (@$rule_lines or @$import_lines) { - $CSS_LINES = "\n"; + $Texi2HTML::THISDOC{'CSS_LINES'} = "\n"; } foreach my $ref (@CSS_REFS) { - $CSS_LINES .= "\n"; + $Texi2HTML::THISDOC{'CSS_LINES'} .= "\n"; } - $CSS_LINES .= "\n"; + $Texi2HTML::THISDOC{'CSS_LINES'} .= "\n"; }