]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.1.38
authorfred <fred>
Tue, 26 Mar 2002 21:48:49 +0000 (21:48 +0000)
committerfred <fred>
Tue, 26 Mar 2002 21:48:49 +0000 (21:48 +0000)
VERSION
scripts/ly2dvi.py

diff --git a/VERSION b/VERSION
index c24cec832a67a92e606f74f0a2c1f10756cef29f..1d49b60ae6033c74a06da39ea45d303c7bebbedb 100644 (file)
--- 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
index 21350aa9e1c2ef0027e312a2a9a3f8120babecfa..417533310a2018798daf48c5e3a0fa9fd7d93644 100644 (file)
@@ -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' )