From db1e988169610feebdf5eba95247419e10212703 Mon Sep 17 00:00:00 2001 From: hanwen Date: Wed, 20 Apr 2005 12:45:17 +0000 Subject: [PATCH] (write_extracted_fonts): bugfix, too many %'s. --- ChangeLog | 15 +++++++++------ python/fontextract.py | 2 +- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index ed4a6a681e..a9e367ce61 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,11 +1,8 @@ -2005-04-20 Erik Sandberg - - * ly/performer-init.ly: Bugfix - - * THANKS: Added bughunters. - 2005-04-20 Han-Wen Nienhuys + * 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: @@ -13,6 +10,12 @@ Allow snippets to be given distinct filenames. Allow the default alt text to be overridden. +2005-04-20 Erik Sandberg + + * ly/performer-init.ly: Bugfix + + * THANKS: Added bughunters. + 2005-04-20 Jan Nieuwenhuizen * configure.in (no gui_b): Remove optional gtk+ requirement. diff --git a/python/fontextract.py b/python/fontextract.py index fc4022e32f..7066df3f79 100644 --- a/python/fontextract.py +++ b/python/fontextract.py @@ -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): -- 2.39.2