>From 282b676b7f06e24f1d44e1c100f2fd30ce93a425 Mon Sep 17 00:00:00 2001 From: Patrick McCarty Date: Thu, 4 Sep 2008 01:01:31 -0700 Subject: [PATCH] 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 --- lilypond-texi2html.init | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/lilypond-texi2html.init b/lilypond-texi2html.init index e208e59..df50fe2 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"; } -- 1.6.0.1