+2005-04-22 Laura Conrad <lconrad@laymusic.org>
+
+ * scripts/abc2ly:
+ second title line append with punctuation dash character;
+ encode abc2ly python strings in utf-8
+
+2005-04-21 Laura Conrad <lconrad@laymusic.org>
+
+ * scripts/abc2ly fix chords (again)
+
2005-04-22 Bernard Hurley <bernard@fong-hurley.org.uk>
* scm/x11-color.scm: new file
#!@PYTHON@
-
+# -*- coding: utf-8 -*-
# once upon a rainy monday afternoon.
#
# ...
if header.has_key('title'):
if a:
if len(header['title']):
- header['title'] = header['title'] + '\\\\\\\\' + a
+ # the non-ascii character
+ # in the string below is a
+ # punctuation dash. (TeX ---)
+ header['title'] = header['title'] + ' — ' + a
else:
header['subtitle'] = a
else:
ch = ''
if str[:1] ==']':
str = str[1:]
- ch = '>'
+ ch = '>>'
end = 0
while str[:1] ==')':
sys.stderr.write ('lilypond output to: `%s\'...' % out_filename)
outf = open (out_filename, 'w')
- outf.write ('\\version "2.3.25"\n')
+# don't substitute @VERSION@. We want this to reflect
+# the last version that was verified to work.
+ outf.write ('\\version "2.5.20"\n' % version)
# dump_global (outf)
dump_header (outf, header)