From: hanwen Date: Wed, 1 Mar 2006 16:09:21 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: release/2.7.38^2~32 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=8766f8b44b548234d9f592a34bb2d471de1a1544;p=lilypond.git *** empty log message *** --- 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