]> git.donarmstrong.com Git - lilypond.git/commitdiff
(write_extracted_fonts): bugfix, too many
authorhanwen <hanwen>
Wed, 20 Apr 2005 12:45:17 +0000 (12:45 +0000)
committerhanwen <hanwen>
Wed, 20 Apr 2005 12:45:17 +0000 (12:45 +0000)
%'s.

ChangeLog
python/fontextract.py

index ed4a6a681ea31c5be93ae2f260ee221733d5552b..a9e367ce613f425461603363e5ed9ba37f566069 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,11 +1,8 @@
-2005-04-20  Erik Sandberg  <ersa9195@student.uu.se>
-
-        * ly/performer-init.ly: Bugfix
-
-        * THANKS: Added bughunters.
-
 2005-04-20  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
+       * python/fontextract.py (write_extracted_fonts): bugfix, too many
+       %'s.
+
        * lily/ledger-line-spanner.cc: some more words of explanation.
 
        * scripts/lilypond-book.py: patches by John Williams:
        Allow snippets to be given distinct filenames.
        Allow the default alt text to be overridden.
 
+2005-04-20  Erik Sandberg  <ersa9195@student.uu.se>
+
+       * ly/performer-init.ly: Bugfix
+
+       * THANKS: Added bughunters.
+
 2005-04-20  Jan Nieuwenhuizen  <janneke@gnu.org>
 
        * configure.in (no gui_b): Remove optional gtk+ requirement.
index fc4022e32f2d2f7b19fd01e763566fb9ebdfbdc9..7066df3f79eafd65a78baa5d6ef529957ca90cf5 100644 (file)
@@ -98,7 +98,7 @@ def write_extracted_fonts (output_file_name, font_dict):
        for (k,v) in font_dict.items ():
                output.write ('\n%%%%BeginFont: %s\n' % k)
                output.write (v)
-               output.write ('\n%%%%EndFont')
+               output.write ('\n%%EndFont')
 
 
 def extract_fonts (output_file_name, input_files):