From: fred Date: Tue, 26 Mar 2002 21:48:49 +0000 (+0000) Subject: lilypond-1.1.38 X-Git-Tag: release/1.5.59~2493 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=7e7737c98a12c8e607c703743446e820fffe5fc0;p=lilypond.git lilypond-1.1.38 --- diff --git a/VERSION b/VERSION index c24cec832a..1d49b60ae6 100644 --- a/VERSION +++ b/VERSION @@ -1,7 +1,7 @@ PACKAGE_NAME=LilyPond MAJOR_VERSION=1 MINOR_VERSION=1 -PATCH_LEVEL=37 +PATCH_LEVEL=38 MY_PATCH_LEVEL= # use the above to send patches: MY_PATCH_LEVEL is always empty for a diff --git a/scripts/ly2dvi.py b/scripts/ly2dvi.py index 21350aa9e1..417533310a 100644 --- a/scripts/ly2dvi.py +++ b/scripts/ly2dvi.py @@ -54,7 +54,7 @@ class Input: open file and set private class variable __fd. The search sequence is: current directory followed by the directories found in include property list. Each directory is searched - for file, file.ly, and file.fly. + for file, file.ly, file.sly and file.fly. input: file filename output: void @@ -63,7 +63,7 @@ class Input: for i in [''] + Props.get('include')[0:]: ifile = os.path.join(i,file) - for j in ['','.ly','.fly']: + for j in ['','.ly','.fly', 'sly']: jfile = ifile+j try: this.__fd = open( jfile, 'r' )