972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
|
var s, transp, vtransp
// if (curvoice.clef.clef_type == "p") // percussion
// return
if (curvoice.ckey.k_bagpipe || curvoice.ckey.k_drum)
return
if (cfmt.transp && (curvoice.transp || curvoice.shift))
syntax(0, "Mix of old and new transposition syntaxes");
transp = (cfmt.transp || 0) + // %%transpose
(curvoice.transp || 0) + // score= / sound=
(curvoice.shift || 0); // shift=
vtransp = curvoice.vtransp || 0
if (transp == vtransp)
|
|
|
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
|
var s, transp, vtransp
// if (curvoice.clef.clef_type == "p") // percussion
// return
if (curvoice.ckey.k_bagpipe || curvoice.ckey.k_drum)
return
if (cfmt.transp && curvoice.transp) // if %%transpose and score=
syntax(0, "Mix of old and new transposition syntaxes");
transp = (cfmt.transp || 0) + // %%transpose
(curvoice.transp || 0) + // score= / sound=
(curvoice.shift || 0); // shift=
vtransp = curvoice.vtransp || 0
if (transp == vtransp)
|