]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.1.41
authorfred <fred>
Tue, 26 Mar 2002 21:49:22 +0000 (21:49 +0000)
committerfred <fred>
Tue, 26 Mar 2002 21:49:22 +0000 (21:49 +0000)
scripts/ly2dvi.py
stepmake/bin/ls-latex.py

index 417533310a2018798daf48c5e3a0fa9fd7d93644..53e020c5bb60dd2ea95986704566e4b7e38f9505 100644 (file)
@@ -452,8 +452,9 @@ class Properties:
 
         t=''
        if os.environ.has_key ('MFINPUTS'):
-               t = os.environ['MFINPUTS'] + os.pathsep
-        os.environ['MFINPUTS'] = t + os.path.join(this.get('root'), 'mf' )
+               t = os.environ['MFINPUTS'] 
+        os.environ['MFINPUTS'] = os.pathsep + t + \
+                                 os.path.join(this.get('root'), 'mf')
 
         if os.environ.has_key('TMP'):
             this.__set('tmp',os.environ['TMP'],'environment')
index e1995fc4cfe5d4c2c145ce9298b1602a68cae63f..d9542c2ae10dcca9fd802953d49967c9b4d28dee 100644 (file)
@@ -13,8 +13,8 @@ import __main__
 import glob
 import regex
 
-latex_author_re = regex.compile('\\author{\([^}]+\)}')
-latex_title_re = regex.compile('\\title{\([^}]+\)}')
+latex_author_re = regex.compile(r'\\author{\([^}]+\)}')
+latex_title_re = regex.compile(r'\\title{\([^}]+\)}')
 
 class Latex_head:
     def __init__ (self):