From 6c2f287f575bafb24eb92a337e05da099b9a8cd6 Mon Sep 17 00:00:00 2001 From: fred Date: Tue, 26 Mar 2002 21:49:22 +0000 Subject: [PATCH] lilypond-1.1.41 --- scripts/ly2dvi.py | 5 +++-- stepmake/bin/ls-latex.py | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/scripts/ly2dvi.py b/scripts/ly2dvi.py index 417533310a..53e020c5bb 100644 --- a/scripts/ly2dvi.py +++ b/scripts/ly2dvi.py @@ -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') diff --git a/stepmake/bin/ls-latex.py b/stepmake/bin/ls-latex.py index e1995fc4cf..d9542c2ae1 100644 --- a/stepmake/bin/ls-latex.py +++ b/stepmake/bin/ls-latex.py @@ -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): -- 2.39.5