From ff962c4d5e34df0d0e0383129a9b397f5b2c18f1 Mon Sep 17 00:00:00 2001 From: fred Date: Fri, 11 Oct 1996 19:35:45 +0000 Subject: [PATCH] lilypond-0.0.3 --- pscore.cc | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/pscore.cc b/pscore.cc index dd8ae697bc..16156d1321 100644 --- a/pscore.cc +++ b/pscore.cc @@ -7,13 +7,14 @@ void PScore::clean_cols() { - for (PCursor c(cols); c.ok(); c++) + for (PCursor c(cols); c.ok(); ) if (!c->used) { - c.remove(); - //mtor << "removing pcol\n"; - } + c.del(); + mtor << "removing pcol\n"; + } else + c++; } - + void PScore::add(PStaff *s) @@ -95,5 +96,7 @@ PScore::output(Tex_stream &ts) for (PCursor lic(lines); lic.ok(); lic++) { ts << "% line of score no. " << l++ <<"\n"; ts << lic->TeXstring(); + if ((lic+1).ok()) + ts << "\\interscoreline\n"; } } -- 2.39.5