]> git.donarmstrong.com Git - lilypond.git/commitdiff
* buildscripts/substitute-encoding.py: Handle PFAemmentaler-xx.pfa
authorWerner Lemberg <wl@gnu.org>
Wed, 1 Jun 2005 19:21:57 +0000 (19:21 +0000)
committerWerner Lemberg <wl@gnu.org>
Wed, 1 Jun 2005 19:21:57 +0000 (19:21 +0000)
correctly.

ChangeLog
buildscripts/substitute-encoding.py

index 339f6ec8a797cbd0ec6cd94f894bdc6ae0f85419..5073402bac9a2ad64646fb3e518698614ee98e1f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-06-01  Werner Lemberg  <wl@gnu.org>
+
+       * buildscripts/substitute-encoding.py: Handle PFAemmentaler-xx.pfa
+       correctly.
+
 2005-06-01  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
        * lily/slur-scoring.cc (generate_avoid_offsets): new
index b3b9fade8b06f209ac8897f50bff7be47110ec43..8b8ae4c504b026eab245d0db5c879eee2ea03a7c 100644 (file)
@@ -53,5 +53,8 @@ if re.search ('mmental', filename):
        str = re.sub ('( 0 1 255 { 1 index exch /.notdef put} for)',
                      '\\1 \n %s'  % put_glyphs,
                      str)
+       str = re.sub ('StandardEncoding def',
+                     '256 array\n0 1 255 { 1 index exch /.notdef put} for\n%sreadonly def' % put_glyphs,
+                     str)
 
        open (filename, 'w').write (str)