From: fred Date: Fri, 11 Oct 1996 19:35:45 +0000 (+0000) Subject: lilypond-0.0.3 X-Git-Tag: release/1.5.59~7096 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=ff962c4d5e34df0d0e0383129a9b397f5b2c18f1;p=lilypond.git lilypond-0.0.3 --- 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"; } }