From 7e7737c98a12c8e607c703743446e820fffe5fc0 Mon Sep 17 00:00:00 2001
From: fred <fred>
Date: Tue, 26 Mar 2002 21:48:49 +0000
Subject: [PATCH] lilypond-1.1.38

---
 VERSION           | 2 +-
 scripts/ly2dvi.py | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

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' )
-- 
2.39.5