331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
|
if (!s.sls)
s.sls = []
s.sls.push({
ty: sl.ty,
note: {s: s2}
})
} else {
error(1, s, "Lack of ending slur(s)")
}
}
} // not %%score
for (s = p_voice.sym; s; s = s.next) {
if (s.time >= staves_found)
break
}
|
|
>
>
>
>
>
>
>
|
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
|
if (!s.sls)
s.sls = []
s.sls.push({
ty: sl.ty,
note: {s: s2}
})
} else {
// error(1, s, "Lack of ending slur(s)")
if (!s.sls)
s.sls = []
s.sls.push({
ty: sl.ty,
note: {s: s2},
loc: 'o' // no slur end
})
}
}
} // not %%score
for (s = p_voice.sym; s; s = s.next) {
if (s.time >= staves_found)
break
}
|