From 6beeb82b447f572e416af4df29b64a5701556260 Mon Sep 17 00:00:00 2001 From: Han-Wen Nienhuys Date: Wed, 1 Mar 2006 16:09:21 +0000 Subject: [PATCH] *** empty log message *** --- ChangeLog | 3 +++ scripts/lilypond-book.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 2d60a55205..9edb5bdddd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2006-03-01 Han-Wen Nienhuys + * scripts/lilypond-book.py (find_file): use global_options for + include path + * scm/ps-to-png.scm (ps-page-count): prevent null characters entering C code. diff --git a/scripts/lilypond-book.py b/scripts/lilypond-book.py index 79385dbf52..d5763fb182 100644 --- a/scripts/lilypond-book.py +++ b/scripts/lilypond-book.py @@ -682,7 +682,7 @@ def classic_lilypond_book_compatibility (key, value): return (None, None) def find_file (name): - for i in include_path: + for i in global_options.include_path: full = os.path.join (i, name) if os.path.exists (full): return full -- 2.39.5