+2004-04-20 Jan Nieuwenhuizen <janneke@gnu.org>
+
+ * scripts/abc2ly.py: Oops use [\]proper[ty] 2.2 syntax.
+
2004-04-19 Jan Nieuwenhuizen <janneke@gnu.org>
* scripts/abc2ly.py: ABC beams preserve support (courtesy Guy
check_clef(value)
elif keyword == "name":
value = re.sub ('\\\\','\\\\\\\\', value)
- voices_append ("\\property Staff.instrument = %s\n" % value )
+ ## < 2.2
+ ##voices_append ("\\property Staff.instrument = %s\n" % value )
+ voices_append ("\\set Staff.instrument = %s\n" % value )
+
__main__.part_names = 1
elif keyword == "sname" or keyword == "snm":
- voices_append ("\\property Staff.instr = %s\n" % value )
+ ##voices_append ("\\property Staff.instr = %s\n" % value )
+ voices_append ("\\set Staff.instr = %s\n" % value )
else:
break
"""
Nowadays abc2ly outputs explicits barlines (?)
"""
- outf.write ("\n\\property Score.defaultBarType=\"empty\"\n")
+ ## < 2.2
+ ##outf.write ("\n\\property Score.defaultBarType = \"empty\"\n")
+ outf.write ("\n\\set Score.defaultBarType = \"empty\"\n")
def dump_slyrics (outf):