From dab82ac75e1ebdf8dce027ff06b332624a8b1d43 Mon Sep 17 00:00:00 2001 From: fred Date: Sun, 24 Mar 2002 19:55:27 +0000 Subject: [PATCH] lilypond-0.1.10 --- mi2mu/mudela-stream.cc | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/mi2mu/mudela-stream.cc b/mi2mu/mudela-stream.cc index 1f171bf8ed..250d1bd064 100644 --- a/mi2mu/mudela-stream.cc +++ b/mi2mu/mudela-stream.cc @@ -5,18 +5,21 @@ // // (c) 1997 Jan Nieuwenhuizen +#include #include #include #include "mi2mu-global.hh" -#include "my-midi-parser.hh" #include "mudela-item.hh" #include "mudela-stream.hh" +extern String filename_str_g; + static int const INDENT_i = 8; Mudela_stream::Mudela_stream (String filename_str) { filename_str_ = filename_str; + pending_indent_i_ = 0; os_p_ = 0; indent_i_ = 0; comment_mode_b_ = false; @@ -73,7 +76,9 @@ Mudela_stream::header() time_t t (time (0)); *os_p_ << ctime (&t); *os_p_ << "% from input file: "; - *os_p_ << midi_parser_l_g->filename_str_; + // *os_p_ << midi_parser_l_g->filename_str_; + // ugh + *os_p_ << filename_str_g; *os_p_ << "\n\n"; // ugh *os_p_ << "\\version \"0.1.1\";\n"; -- 2.39.5