Generated by (address unknown), From = lilypond-1.5.52, To = lilypond-1.5.52.mb1 usage cd lilypond-source-dir; patch -E -p1 < lilypond-1.5.52.mb1.diff Patches do not contain automatically generated files or (urg) empty directories, i.e., you should rerun autoconf, configure diff -purN ../lilypond-1.5.52/ChangeLog ./ChangeLog --- ../lilypond-1.5.52/ChangeLog Fri Apr 12 19:44:59 2002 +++ ./ChangeLog Wed Apr 17 17:34:39 2002 @@ -1,3 +1,8 @@ +2002-04-17 Mats Bengtsson + + * scripts/lilypond-book.py: Workaround bug in the re module of + Python 1.6-2.1 (cannot handle the regexp for lilypond-block correctly) + 2002-04-12 Han-Wen Nienhuys * lily/*.cc: add some undocced properties. diff -purN ../lilypond-1.5.52/VERSION ./VERSION --- ../lilypond-1.5.52/VERSION Fri Apr 12 19:41:05 2002 +++ ./VERSION Mon Apr 15 17:33:55 2002 @@ -2,7 +2,7 @@ PACKAGE_NAME=LilyPond MAJOR_VERSION=1 MINOR_VERSION=5 PATCH_LEVEL=52 -MY_PATCH_LEVEL= +MY_PATCH_LEVEL=mb1 # use the above to send patches: MY_PATCH_LEVEL is always empty for a diff -purN ../lilypond-1.5.52/scripts/lilypond-book.py ./scripts/lilypond-book.py --- ../lilypond-1.5.52/scripts/lilypond-book.py Thu Apr 11 11:15:41 2002 +++ ./scripts/lilypond-book.py Wed Apr 17 17:33:34 2002 @@ -40,7 +40,15 @@ import os import stat import string -import re + +# Handle bug in Python 1.6-2.1 +try: + import pre + re = pre + del pre +except ImportError: + import re + import getopt import sys import __main__