]> git.donarmstrong.com Git - lilypond.git/commitdiff
(conv): indent 4 for python files.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 30 Apr 2006 20:18:53 +0000 (20:18 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 30 Apr 2006 20:18:53 +0000 (20:18 +0000)
ChangeLog
python/convertrules.py
python/fontextract.py
python/lilylib.py

index f1b208cc3b633a65356e02a58642e291da818aa3..620923537a7b7c5818d0f5b2e78936c427e4028b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-04-30  Han-Wen Nienhuys  <hanwen@xs4all.nl>
+
+       * python/convertrules.py (conv): indent 4 for python files.
+
 2006-04-29  Mats Bengtsson  <mabe@drongo.s3.kth.se>
 
        * Documentation/user/changing-defaults.itely (Creating contexts):
index ffee8295d54e10232ae550648bec9e8f9c4dcb7d..4c0465785a5182d44daa2d81c3d0bcf29aa6e29d 100644 (file)
@@ -1,3 +1,6 @@
+# (setq py-indent-offset 4)
+
+
 import string
 import re
 import sys
@@ -12,31 +15,31 @@ FROM_TO = _ ( "%s has been replaced by %s")
 
 
 class FatalConversionError:
-       pass
+    pass
 
 conversions = []
 error_file = sys.stderr 
 
 def conv(str):
-       if re.search ('\\\\multi', str):
-               error_file.write ('\n')
-               error_file.write (NOT_SMART % "\\multi")
-               error_file.write ('\n')
-       return str
+    if re.search ('\\\\multi', str):
+       error_file.write ('\n')
+       error_file.write (NOT_SMART % "\\multi")
+       error_file.write ('\n')
+    return str
 
 conversions.append (((0,1,9), conv, '\\header { key = concat + with + operator }'))
 
 
 def conv (str):
-       if re.search ('\\\\octave', str):
-               error_file.write ('\n')
-               error_file.write (NOT_SMART % "\\octave")
-               error_file.write ('\n')
-               error_file.write (UPDATE_MANUALLY)
-               error_file.write ('\n')
-       #       raise FatalConversionError ()
+    if re.search ('\\\\octave', str):
+       error_file.write ('\n')
+       error_file.write (NOT_SMART % "\\octave")
+       error_file.write ('\n')
+       error_file.write (UPDATE_MANUALLY)
+       error_file.write ('\n')
+    #  raise FatalConversionError ()
 
-       return str
+    return str
 
 conversions.append ((
        ((0,1,19), conv, 'deprecated \\octave; cannot convert automatically')))
@@ -44,12 +47,12 @@ conversions.append ((
 
 
 def conv (str):
-       str = re.sub ('\\\\textstyle([^;]+);',
-                                '\\\\property Lyrics . textstyle = \\1', str)
-       # harmful to current .lys
-       # str = re.sub ('\\\\key([^;]+);', '\\\\accidentals \\1;', str)
+    str = re.sub ('\\\\textstyle([^;]+);',
+                            '\\\\property Lyrics . textstyle = \\1', str)
+    # harmful to current .lys
+    # str = re.sub ('\\\\key([^;]+);', '\\\\accidentals \\1;', str)
 
-       return str
+    return str
 
 conversions.append ((
        ((0,1,20), conv, 'deprecated \\textstyle, new \\key syntax')))
@@ -57,10 +60,10 @@ conversions.append ((
 
 
 def conv (str):
-       str = re.sub ('\\\\musical_pitch', '\\\\musicalpitch',str)
-       str = re.sub ('\\\\meter', '\\\\time',str)
+    str = re.sub ('\\\\musical_pitch', '\\\\musicalpitch',str)
+    str = re.sub ('\\\\meter', '\\\\time',str)
 
-       return str
+    return str
 
 conversions.append ((
        ((0,1,21), conv, '\\musical_pitch -> \\musicalpitch, '+
@@ -68,7 +71,7 @@ conversions.append ((
 
 
 def conv (str):
-       return str
+    return str
 
 conversions.append ((
        ((1,0,0), conv, '0.1.21 -> 1.0.0 ')))
@@ -76,11 +79,11 @@ conversions.append ((
 
 
 def conv (str):
-       str = re.sub ('\\\\accidentals', '\\\\keysignature',str)
-       str = re.sub ('specialaccidentals *= *1', 'keyoctaviation = 0',str)
-       str = re.sub ('specialaccidentals *= *0', 'keyoctaviation = 1',str)
+    str = re.sub ('\\\\accidentals', '\\\\keysignature',str)
+    str = re.sub ('specialaccidentals *= *1', 'keyoctaviation = 0',str)
+    str = re.sub ('specialaccidentals *= *0', 'keyoctaviation = 1',str)
 
-       return str
+    return str
 
 conversions.append ((
        ((1,0,1), conv, '\\accidentals -> \\keysignature, ' +
@@ -88,74 +91,74 @@ conversions.append ((
 
 
 def conv(str):
-       if re.search ('\\\\header', str):
-               error_file.write ('\n')
-               error_file.write (NOT_SMART % "new \\header format")
-               error_file.write ('\n')
-       return str
+    if re.search ('\\\\header', str):
+       error_file.write ('\n')
+       error_file.write (NOT_SMART % "new \\header format")
+       error_file.write ('\n')
+    return str
 
 conversions.append (((1,0,2), conv, '\\header { key = concat + with + operator }'))
 
 
 def conv(str):
-       str =  re.sub ('\\\\melodic([^a-zA-Z])', '\\\\notes\\1',str)
-       return str
+    str =  re.sub ('\\\\melodic([^a-zA-Z])', '\\\\notes\\1',str)
+    return str
 
 conversions.append (((1,0,3), conv, '\\melodic -> \\notes'))
 
 
 def conv(str):
-       str =  re.sub ('default_paper *=', '',str)
-       str =  re.sub ('default_midi *=', '',str)
-       return str
+    str =  re.sub ('default_paper *=', '',str)
+    str =  re.sub ('default_midi *=', '',str)
+    return str
 
 conversions.append (((1,0,4), conv, 'default_{paper,midi}'))
 
 
 def conv(str):
-       str =  re.sub ('ChoireStaff', 'ChoirStaff',str)
-       str =  re.sub ('\\\\output', 'output = ',str)
+    str =  re.sub ('ChoireStaff', 'ChoirStaff',str)
+    str =  re.sub ('\\\\output', 'output = ',str)
 
-       return str
+    return str
 
 conversions.append (((1,0,5), conv, 'ChoireStaff -> ChoirStaff'))
 
 
 def conv(str):
-       if re.search ('[a-zA-Z]+ = *\\translator',str):
-               error_file.write ('\n')
-               error_file.write (NOT_SMART % "\\translator syntax")
-               error_file.write ('\n')
-       #       raise FatalConversionError ()
-       return str
+    if re.search ('[a-zA-Z]+ = *\\translator',str):
+       error_file.write ('\n')
+       error_file.write (NOT_SMART % "\\translator syntax")
+       error_file.write ('\n')
+    #  raise FatalConversionError ()
+    return str
 
 conversions.append (((1,0,6), conv, 'foo = \\translator {\\type .. } ->\\translator {\\type ..; foo; }'))
 
 
 
 def conv(str):
-       str =  re.sub ('\\\\lyrics*', '\\\\lyrics',str)
+    str =  re.sub ('\\\\lyrics*', '\\\\lyrics',str)
 
-       return str
+    return str
 
 conversions.append (((1,0,7), conv, '\\lyric -> \\lyrics'))
 
 
 def conv(str):
-       str =  re.sub ('\\\\\\[/3+', '\\\\times 2/3 { ',str)
-       str =  re.sub ('\\[/3+', '\\\\times 2/3 { [',str)
-       str =  re.sub ('\\\\\\[([0-9/]+)', '\\\\times \\1 {',str)
-       str =  re.sub ('\\[([0-9/]+)', '\\\\times \\1 { [',str)
-       str =  re.sub ('\\\\\\]([0-9/]+)', '}', str)
-       str =  re.sub ('\\\\\\]', '}',str)
-       str =  re.sub ('\\]([0-9/]+)', '] }', str)
-       return str
+    str =  re.sub ('\\\\\\[/3+', '\\\\times 2/3 { ',str)
+    str =  re.sub ('\\[/3+', '\\\\times 2/3 { [',str)
+    str =  re.sub ('\\\\\\[([0-9/]+)', '\\\\times \\1 {',str)
+    str =  re.sub ('\\[([0-9/]+)', '\\\\times \\1 { [',str)
+    str =  re.sub ('\\\\\\]([0-9/]+)', '}', str)
+    str =  re.sub ('\\\\\\]', '}',str)
+    str =  re.sub ('\\]([0-9/]+)', '] }', str)
+    return str
 
 conversions.append (((1,0,10), conv, '[2/3 ]1/1 -> \\times 2/3 '))
 
 
 def conv(str):
-       return str
+    return str
 conversions.append (((1,0,12), conv, 'Chord syntax stuff'))
 
 
@@ -163,54 +166,54 @@ conversions.append (((1,0,12), conv, 'Chord syntax stuff'))
 def conv(str):
 
 
-       str =  re.sub ('<([^>~]+)~([^>]*)>','<\\1 \\2> ~', str)
+    str =  re.sub ('<([^>~]+)~([^>]*)>','<\\1 \\2> ~', str)
 
-       return str
+    return str
 
 conversions.append (((1,0,13), conv, '<a ~ b> c -> <a b> ~ c'))
 
 
 def conv(str):
-       str =  re.sub ('<\\[','[<', str)
-       str =  re.sub ('\\]>','>]', str)
+    str =  re.sub ('<\\[','[<', str)
+    str =  re.sub ('\\]>','>]', str)
 
-       return str
+    return str
 
 conversions.append (((1,0,14), conv, '<[a b> <a b]>c -> [<a b> <a b>]'))
 
 
 
 def conv(str):
-       str =  re.sub ('\\\\type([^\n]*engraver)','\\\\TYPE\\1', str)
-       str =  re.sub ('\\\\type([^\n]*performer)','\\\\TYPE\\1', str)
-       str =  re.sub ('\\\\type','\\\\context', str)
-       str =  re.sub ('\\\\TYPE','\\\\type', str)
-       str =  re.sub ('textstyle','textStyle', str)
+    str =  re.sub ('\\\\type([^\n]*engraver)','\\\\TYPE\\1', str)
+    str =  re.sub ('\\\\type([^\n]*performer)','\\\\TYPE\\1', str)
+    str =  re.sub ('\\\\type','\\\\context', str)
+    str =  re.sub ('\\\\TYPE','\\\\type', str)
+    str =  re.sub ('textstyle','textStyle', str)
 
-       return str
+    return str
 
 conversions.append (((1,0,16), conv, '\\type -> \\context, textstyle -> textStyle'))
 
 
 
 def conv(str):
-       if re.search ('\\\\repeat',str):
-               error_file.write ('\n')
-               error_file.write (NOT_SMART % "\\repeat")
-               error_file.write ('\n')
-       #       raise FatalConversionError ()
-       return str
+    if re.search ('\\\\repeat',str):
+       error_file.write ('\n')
+       error_file.write (NOT_SMART % "\\repeat")
+       error_file.write ('\n')
+    #  raise FatalConversionError ()
+    return str
 
 conversions.append (((1,0,18), conv,
                     '\\repeat NUM Music Alternative -> \\repeat FOLDSTR Music Alternative'))
 
 
 def conv(str):
-       str =  re.sub ('SkipBars','skipBars', str)
-       str =  re.sub ('fontsize','fontSize', str)
-       str =  re.sub ('midi_instrument','midiInstrument', str)
+    str =  re.sub ('SkipBars','skipBars', str)
+    str =  re.sub ('fontsize','fontSize', str)
+    str =  re.sub ('midi_instrument','midiInstrument', str)
 
-       return str
+    return str
 
 conversions.append (((1,0,19), conv,
                     'fontsize -> fontSize, midi_instrument -> midiInstrument, SkipBars -> skipBars'))
@@ -218,11 +221,11 @@ conversions.append (((1,0,19), conv,
 
 
 def conv(str):
-       str =  re.sub ('tieydirection','tieVerticalDirection', str)
-       str =  re.sub ('slurydirection','slurVerticalDirection', str)
-       str =  re.sub ('ydirection','verticalDirection', str)
+    str =  re.sub ('tieydirection','tieVerticalDirection', str)
+    str =  re.sub ('slurydirection','slurVerticalDirection', str)
+    str =  re.sub ('ydirection','verticalDirection', str)
 
-       return str
+    return str
 
 conversions.append (((1,0,20), conv,
        '{,tie,slur}ydirection -> {v,tieV,slurV}erticalDirection'))
@@ -230,9 +233,9 @@ conversions.append (((1,0,20), conv,
 
 
 def conv(str):
-       str =  re.sub ('hshift','horizontalNoteShift', str)
+    str =  re.sub ('hshift','horizontalNoteShift', str)
 
-       return str
+    return str
 
 conversions.append (((1,0,21), conv,
        'hshift -> horizontalNoteShift'))
@@ -240,9 +243,9 @@ conversions.append (((1,0,21), conv,
 
 
 def conv(str):
-       str =  re.sub ('\\\\grouping[^;]*;','', str)
+    str =  re.sub ('\\\\grouping[^;]*;','', str)
 
-       return str
+    return str
 
 conversions.append (((1,1,52), conv,
        'deprecate \\grouping'))
@@ -250,28 +253,28 @@ conversions.append (((1,1,52), conv,
 
 
 def conv(str):
-       str =  re.sub ('\\\\wheel','\\\\coda', str)
+    str =  re.sub ('\\\\wheel','\\\\coda', str)
 
-       return str
+    return str
 
 conversions.append (((1,1,55), conv,
        '\\wheel -> \\coda'))
 
 
 def conv(str):
-       str =  re.sub ('keyoctaviation','keyOctaviation', str)
-       str =  re.sub ('slurdash','slurDash', str)
+    str =  re.sub ('keyoctaviation','keyOctaviation', str)
+    str =  re.sub ('slurdash','slurDash', str)
 
-       return str
+    return str
 
 conversions.append (((1,1,65), conv,
        'slurdash -> slurDash, keyoctaviation -> keyOctaviation'))
 
 
 def conv(str):
-       str =  re.sub ('\\\\repeat *\"?semi\"?','\\\\repeat "volta"', str)
+    str =  re.sub ('\\\\repeat *\"?semi\"?','\\\\repeat "volta"', str)
 
-       return str
+    return str
 
 conversions.append (((1,1,66), conv,
        'semi -> volta'))
@@ -279,77 +282,77 @@ conversions.append (((1,1,66), conv,
 
 
 def conv(str):
-       str =  re.sub ('\"?beamAuto\"? *= *\"?0?\"?','noAutoBeaming = "1"', str)
+    str =  re.sub ('\"?beamAuto\"? *= *\"?0?\"?','noAutoBeaming = "1"', str)
 
-       return str
+    return str
 
 conversions.append (((1,1,67), conv,
        'beamAuto -> noAutoBeaming'))
 
 
 def conv(str):
-       str =  re.sub ('automaticMelismas', 'automaticMelismata', str)
+    str =  re.sub ('automaticMelismas', 'automaticMelismata', str)
 
-       return str
+    return str
 
 conversions.append (((1,2,0), conv,
        'automaticMelismas -> automaticMelismata'))
 
 
 def conv(str):
-       str =  re.sub ('dynamicDir\\b', 'dynamicDirection', str)
+    str =  re.sub ('dynamicDir\\b', 'dynamicDirection', str)
 
-       return str
+    return str
 
 conversions.append (((1,2,1), conv,
        'dynamicDir -> dynamicDirection'))
 
 
 def conv(str):
-       str =  re.sub ('\\\\cadenza *0 *;', '\\\\cadenzaOff', str)
-       str =  re.sub ('\\\\cadenza *1 *;', '\\\\cadenzaOn', str)
+    str =  re.sub ('\\\\cadenza *0 *;', '\\\\cadenzaOff', str)
+    str =  re.sub ('\\\\cadenza *1 *;', '\\\\cadenzaOn', str)
 
-       return str
+    return str
 
 conversions.append (((1,3,4), conv,
        '\\cadenza -> \\cadenza{On|Off}'))
 
 
 def conv (str):
-       str = re.sub ('"?beamAuto([^"=]+)"? *= *"([0-9]+)/([0-9]+)" *;*',
-                     'beamAuto\\1 = #(make-moment \\2 \\3)',
-                     str)
-       return str
+    str = re.sub ('"?beamAuto([^"=]+)"? *= *"([0-9]+)/([0-9]+)" *;*',
+                 'beamAuto\\1 = #(make-moment \\2 \\3)',
+                 str)
+    return str
 
 conversions.append (((1,3,5), conv, 'beamAuto moment properties'))
 
 
 def conv (str):
-       str = re.sub ('stemStyle',
-                     'flagStyle',
-                     str)
-       return str
+    str = re.sub ('stemStyle',
+                 'flagStyle',
+                 str)
+    return str
 
 conversions.append (((1,3,17), conv, 'stemStyle -> flagStyle'))
 
 
 def conv (str):
-       str = re.sub ('staffLineLeading',
-                     'staffSpace',
-                     str)
-       return str
+    str = re.sub ('staffLineLeading',
+                 'staffSpace',
+                 str)
+    return str
 
 conversions.append (((1,3,18), conv, 'staffLineLeading -> staffSpace'))
 
 
 
 def conv(str):
-       if re.search ('\\\\repetitions',str):
-               error_file.write ('\n')
-               error_file.write (NOT_SMART % "\\repetitions")
-               error_file.write ('\n')
-       #       raise FatalConversionError ()
-       return str
+    if re.search ('\\\\repetitions',str):
+       error_file.write ('\n')
+       error_file.write (NOT_SMART % "\\repetitions")
+       error_file.write ('\n')
+    #  raise FatalConversionError ()
+    return str
 
 conversions.append (((1,3,23), conv,
        '\\\\repetitions feature dropped'))
@@ -357,74 +360,74 @@ conversions.append (((1,3,23), conv,
 
 
 def conv (str):
-       str = re.sub ('textEmptyDimension *= *##t',
-                     'textNonEmpty = ##f',
-                     str)
-       str = re.sub ('textEmptyDimension *= *##f',
-                     'textNonEmpty = ##t',
-                     str)
-       return str
+    str = re.sub ('textEmptyDimension *= *##t',
+                 'textNonEmpty = ##f',
+                 str)
+    str = re.sub ('textEmptyDimension *= *##f',
+                 'textNonEmpty = ##t',
+                 str)
+    return str
 
 conversions.append (((1,3,35), conv, 'textEmptyDimension -> textNonEmpty'))
 
 
 def conv (str):
-       str = re.sub ("([a-z]+)[ \t]*=[ \t]*\\\\musicalpitch *{([- 0-9]+)} *\n",
-                     "(\\1 . (\\2))\n", str)
-       str = re.sub ("\\\\musicalpitch *{([0-9 -]+)}",
-                     "\\\\musicalpitch #'(\\1)", str)
-       if re.search ('\\\\notenames',str):
-               error_file.write ('\n')
-               error_file.write (NOT_SMART % "new \\notenames format")
-               error_file.write ('\n')
-       return str
+    str = re.sub ("([a-z]+)[ \t]*=[ \t]*\\\\musicalpitch *{([- 0-9]+)} *\n",
+                 "(\\1 . (\\2))\n", str)
+    str = re.sub ("\\\\musicalpitch *{([0-9 -]+)}",
+                 "\\\\musicalpitch #'(\\1)", str)
+    if re.search ('\\\\notenames',str):
+       error_file.write ('\n')
+       error_file.write (NOT_SMART % "new \\notenames format")
+       error_file.write ('\n')
+    return str
 
 conversions.append (((1,3,38), conv, '\musicalpitch { a b c } -> #\'(a b c)'))
 
 
 def conv (str):
-       def replace (match):
-               return '\\key %s;' % string.lower (match.group (1))
+    def replace (match):
+       return '\\key %s;' % string.lower (match.group (1))
 
-       str = re.sub ("\\\\key ([^;]+);",  replace, str)
-       return str
+    str = re.sub ("\\\\key ([^;]+);",  replace, str)
+    return str
 
 conversions.append (((1,3,39), conv, '\\key A ;  ->\\key a;'))
 
 
 def conv (str):
-       if re.search ('\\[:',str):
-               error_file.write ('\n')
-               error_file.write (NOT_SMART % "new tremolo format")
-               error_file.write ('\n')
-       return str
+    if re.search ('\\[:',str):
+       error_file.write ('\n')
+       error_file.write (NOT_SMART % "new tremolo format")
+       error_file.write ('\n')
+    return str
 
 conversions.append (((1,3,41), conv,
        '[:16 c4 d4 ] -> \\repeat "tremolo" 2 { c16 d16 }'))
 
 
 def conv (str):
-       str = re.sub ('Staff_margin_engraver' , 'Instrument_name_engraver', str)
-       return str
+    str = re.sub ('Staff_margin_engraver' , 'Instrument_name_engraver', str)
+    return str
 
 conversions.append (((1,3,42), conv,
        'Staff_margin_engraver deprecated, use Instrument_name_engraver'))
 
 
 def conv (str):
-       str = re.sub ('note[hH]eadStyle\\s*=\\s*"?(\\w+)"?' , "noteHeadStyle = #'\\1", str)
-       return str
+    str = re.sub ('note[hH]eadStyle\\s*=\\s*"?(\\w+)"?' , "noteHeadStyle = #'\\1", str)
+    return str
 
 conversions.append (((1,3,49), conv,
        'noteHeadStyle value: string -> symbol'))
 
 
 def conv (str):
-       if re.search ('\\\\keysignature', str):
-               error_file.write ('\n')
-               error_file.write (NOT_SMART % "new tremolo format")
-               error_file.write ('\n')
-       return str
+    if re.search ('\\\\keysignature', str):
+       error_file.write ('\n')
+       error_file.write (NOT_SMART % "new tremolo format")
+       error_file.write ('\n')
+    return str
 
 
 conversions.append (((1,3,58), conv,
@@ -432,17 +435,17 @@ conversions.append (((1,3,58), conv,
 
 
 def conv (str):
-       str = re.sub (r"""\\key *([a-z]+) *;""", r"""\\key \1 \major;""",str);
-       return str
+    str = re.sub (r"""\\key *([a-z]+) *;""", r"""\\key \1 \major;""",str);
+    return str
 conversions.append (((1,3,59), conv,
        '\key X ; -> \key X major; '))
 
 
 def conv (str):
-       str = re.sub (r'latexheaders *= *"\\\\input ',
-                     'latexheaders = "',
-                     str)
-       return str
+    str = re.sub (r'latexheaders *= *"\\\\input ',
+                 'latexheaders = "',
+                 str)
+    return str
 conversions.append (((1,3,68), conv, 'latexheaders = "\\input global" -> latexheaders = "global"'))
 
 
@@ -451,80 +454,80 @@ conversions.append (((1,3,68), conv, 'latexheaders = "\\input global" -> latexhe
 # TODO: lots of other syntax change should be done here as well
 
 def conv (str):
-       str = re.sub ('basicCollisionProperties', 'NoteCollision', str)
-       str = re.sub ('basicVoltaSpannerProperties' , "VoltaBracket", str)
-       str = re.sub ('basicKeyProperties' , "KeySignature", str)
+    str = re.sub ('basicCollisionProperties', 'NoteCollision', str)
+    str = re.sub ('basicVoltaSpannerProperties' , "VoltaBracket", str)
+    str = re.sub ('basicKeyProperties' , "KeySignature", str)
 
-       str = re.sub ('basicClefItemProperties' ,"Clef", str)
+    str = re.sub ('basicClefItemProperties' ,"Clef", str)
 
 
-       str = re.sub ('basicLocalKeyProperties' ,"Accidentals", str)
-       str = re.sub ('basicMarkProperties' ,"Accidentals", str)
-       str = re.sub ('basic([A-Za-z_]+)Properties', '\\1', str)
+    str = re.sub ('basicLocalKeyProperties' ,"Accidentals", str)
+    str = re.sub ('basicMarkProperties' ,"Accidentals", str)
+    str = re.sub ('basic([A-Za-z_]+)Properties', '\\1', str)
 
-       str = re.sub ('Repeat_engraver' ,'Volta_engraver', str)
-       return str
+    str = re.sub ('Repeat_engraver' ,'Volta_engraver', str)
+    return str
 
 conversions.append (((1,3,92), conv, 'basicXXXProperties -> XXX, Repeat_engraver -> Volta_engraver'))
 
 
 def conv (str):
-       # Ugh, but meaning of \stemup changed too
-       # maybe we should do \stemup -> \stemUp\slurUp\tieUp ?
-       str = re.sub ('\\\\stemup', '\\\\stemUp', str)
-       str = re.sub ('\\\\stemdown', '\\\\stemDown', str)
-       str = re.sub ('\\\\stemboth', '\\\\stemBoth', str)
+    # Ugh, but meaning of \stemup changed too
+    # maybe we should do \stemup -> \stemUp\slurUp\tieUp ?
+    str = re.sub ('\\\\stemup', '\\\\stemUp', str)
+    str = re.sub ('\\\\stemdown', '\\\\stemDown', str)
+    str = re.sub ('\\\\stemboth', '\\\\stemBoth', str)
 
-       str = re.sub ('\\\\slurup', '\\\\slurUp', str)
-       str = re.sub ('\\\\slurboth', '\\\\slurBoth', str)
-       str = re.sub ('\\\\slurdown', '\\\\slurDown', str)
-       str = re.sub ('\\\\slurdotted', '\\\\slurDotted', str)
-       str = re.sub ('\\\\slurnormal', '\\\\slurNoDots', str)
+    str = re.sub ('\\\\slurup', '\\\\slurUp', str)
+    str = re.sub ('\\\\slurboth', '\\\\slurBoth', str)
+    str = re.sub ('\\\\slurdown', '\\\\slurDown', str)
+    str = re.sub ('\\\\slurdotted', '\\\\slurDotted', str)
+    str = re.sub ('\\\\slurnormal', '\\\\slurNoDots', str)
 
-       str = re.sub ('\\\\shiftoff', '\\\\shiftOff', str)
-       str = re.sub ('\\\\shifton', '\\\\shiftOn', str)
-       str = re.sub ('\\\\shiftonn', '\\\\shiftOnn', str)
-       str = re.sub ('\\\\shiftonnn', '\\\\shiftOnnn', str)
+    str = re.sub ('\\\\shiftoff', '\\\\shiftOff', str)
+    str = re.sub ('\\\\shifton', '\\\\shiftOn', str)
+    str = re.sub ('\\\\shiftonn', '\\\\shiftOnn', str)
+    str = re.sub ('\\\\shiftonnn', '\\\\shiftOnnn', str)
 
-       str = re.sub ('\\\\onevoice', '\\\\oneVoice', str)
-       str = re.sub ('\\\\voiceone', '\\\\voiceOne', str)
-       str = re.sub ('\\\\voicetwo', '\\\\voiceTwo', str)
-       str = re.sub ('\\\\voicethree', '\\\\voiceThree', str)
-       str = re.sub ('\\\\voicefour', '\\\\voiceFour', str)
+    str = re.sub ('\\\\onevoice', '\\\\oneVoice', str)
+    str = re.sub ('\\\\voiceone', '\\\\voiceOne', str)
+    str = re.sub ('\\\\voicetwo', '\\\\voiceTwo', str)
+    str = re.sub ('\\\\voicethree', '\\\\voiceThree', str)
+    str = re.sub ('\\\\voicefour', '\\\\voiceFour', str)
 
-       # I don't know exactly when these happened...
-       # ugh, we loose context setting here...
-       str = re.sub ('\\\\property *[^ ]*verticalDirection[^=]*= *#?"?(1|(\\\\up))"?', '\\\\stemUp\\\\slurUp\\\\tieUp', str)
-       str = re.sub ('\\\\property *[^ ]*verticalDirection[^=]*= *#?"?((-1)|(\\\\down))"?', '\\\\stemDown\\\\slurDown\\\\tieDown', str)
-       str = re.sub ('\\\\property *[^ ]*verticalDirection[^=]*= *#?"?(0|(\\\\center))"?', '\\\\stemBoth\\\\slurBoth\\\\tieBoth', str)
+    # I don't know exactly when these happened...
+    # ugh, we loose context setting here...
+    str = re.sub ('\\\\property *[^ ]*verticalDirection[^=]*= *#?"?(1|(\\\\up))"?', '\\\\stemUp\\\\slurUp\\\\tieUp', str)
+    str = re.sub ('\\\\property *[^ ]*verticalDirection[^=]*= *#?"?((-1)|(\\\\down))"?', '\\\\stemDown\\\\slurDown\\\\tieDown', str)
+    str = re.sub ('\\\\property *[^ ]*verticalDirection[^=]*= *#?"?(0|(\\\\center))"?', '\\\\stemBoth\\\\slurBoth\\\\tieBoth', str)
 
-       str = re.sub ('verticalDirection[^=]*= *#?"?(1|(\\\\up))"?', 'Stem \\\\override #\'direction = #0\nSlur \\\\override #\'direction = #0\n Tie \\\\override #\'direction = #1', str)
-       str = re.sub ('verticalDirection[^=]*= *#?"?((-1)|(\\\\down))"?', 'Stem \\\\override #\'direction = #0\nSlur \\\\override #\'direction = #0\n Tie \\\\override #\'direction = #-1', str)
-       str = re.sub ('verticalDirection[^=]*= *#?"?(0|(\\\\center))"?', 'Stem \\\\override #\'direction = #0\nSlur \\\\override #\'direction = #0\n Tie \\\\override #\'direction = #0', str)
+    str = re.sub ('verticalDirection[^=]*= *#?"?(1|(\\\\up))"?', 'Stem \\\\override #\'direction = #0\nSlur \\\\override #\'direction = #0\n Tie \\\\override #\'direction = #1', str)
+    str = re.sub ('verticalDirection[^=]*= *#?"?((-1)|(\\\\down))"?', 'Stem \\\\override #\'direction = #0\nSlur \\\\override #\'direction = #0\n Tie \\\\override #\'direction = #-1', str)
+    str = re.sub ('verticalDirection[^=]*= *#?"?(0|(\\\\center))"?', 'Stem \\\\override #\'direction = #0\nSlur \\\\override #\'direction = #0\n Tie \\\\override #\'direction = #0', str)
 
-       str = re.sub ('\\\\property *[^ .]*[.]?([a-z]+)VerticalDirection[^=]*= *#?"?(1|(\\\\up))"?', '\\\\\\1Up', str)
-       str = re.sub ('\\\\property *[^ .]*[.]?([a-z]+)VerticalDirection[^=]*= *#?"?((-1)|(\\\\down))"?', '\\\\\\1Down', str)
-       str = re.sub ('\\\\property *[^ .]*[.]?([a-z]+)VerticalDirection[^=]*= *#?"?(0|(\\\\center))"?', '\\\\\\1Both', str)
+    str = re.sub ('\\\\property *[^ .]*[.]?([a-z]+)VerticalDirection[^=]*= *#?"?(1|(\\\\up))"?', '\\\\\\1Up', str)
+    str = re.sub ('\\\\property *[^ .]*[.]?([a-z]+)VerticalDirection[^=]*= *#?"?((-1)|(\\\\down))"?', '\\\\\\1Down', str)
+    str = re.sub ('\\\\property *[^ .]*[.]?([a-z]+)VerticalDirection[^=]*= *#?"?(0|(\\\\center))"?', '\\\\\\1Both', str)
 
-       # (lacks capitalisation slur -> Slur)
-       str = re.sub ('([a-z]+)VerticalDirection[^=]*= *#?"?(1|(\\\\up))"?', '\\1 \\\\override #\'direction = #1', str)
-       str = re.sub ('([a-z]+)VerticalDirection[^=]*= *#?"?((-1)|(\\\\down))"?', '\\1 \\override #\'direction = #-1', str)
-       str = re.sub ('([a-z]+)VerticalDirection[^=]*= *#?"?(0|(\\\\center))"?', '\\1 \\\\override #\'direction = #0', str)
+    # (lacks capitalisation slur -> Slur)
+    str = re.sub ('([a-z]+)VerticalDirection[^=]*= *#?"?(1|(\\\\up))"?', '\\1 \\\\override #\'direction = #1', str)
+    str = re.sub ('([a-z]+)VerticalDirection[^=]*= *#?"?((-1)|(\\\\down))"?', '\\1 \\override #\'direction = #-1', str)
+    str = re.sub ('([a-z]+)VerticalDirection[^=]*= *#?"?(0|(\\\\center))"?', '\\1 \\\\override #\'direction = #0', str)
 
-       ## dynamic..
-       str = re.sub ('\\\\property *[^ .]*[.]?dynamicDirection[^=]*= *#?"?(1|(\\\\up))"?', '\\\\dynamicUp', str)
-       str = re.sub ('\\\\property *[^ .]*[.]?dyn[^=]*= *#?"?((-1)|(\\\\down))"?', '\\\\dynamicDown', str)
-       str = re.sub ('\\\\property *[^ .]*[.]?dyn[^=]*= *#?"?(0|(\\\\center))"?', '\\\\dynamicBoth', str)
+    ## dynamic..
+    str = re.sub ('\\\\property *[^ .]*[.]?dynamicDirection[^=]*= *#?"?(1|(\\\\up))"?', '\\\\dynamicUp', str)
+    str = re.sub ('\\\\property *[^ .]*[.]?dyn[^=]*= *#?"?((-1)|(\\\\down))"?', '\\\\dynamicDown', str)
+    str = re.sub ('\\\\property *[^ .]*[.]?dyn[^=]*= *#?"?(0|(\\\\center))"?', '\\\\dynamicBoth', str)
 
-       str = re.sub ('\\\\property *[^ .]*[.]?([a-z]+)Dash[^=]*= *#?"?(0|(""))"?', '\\\\\\1NoDots', str)
-       str = re.sub ('\\\\property *[^ .]*[.]?([a-z]+)Dash[^=]*= *#?"?([1-9]+)"?', '\\\\\\1Dotted', str)
+    str = re.sub ('\\\\property *[^ .]*[.]?([a-z]+)Dash[^=]*= *#?"?(0|(""))"?', '\\\\\\1NoDots', str)
+    str = re.sub ('\\\\property *[^ .]*[.]?([a-z]+)Dash[^=]*= *#?"?([1-9]+)"?', '\\\\\\1Dotted', str)
 
-       str = re.sub ('\\\\property *[^ .]*[.]?noAutoBeaming[^=]*= *#?"?(0|(""))"?', '\\\\autoBeamOn', str)
-       str = re.sub ('\\\\property *[^ .]*[.]?noAutoBeaming[^=]*= *#?"?([1-9]+)"?', '\\\\autoBeamOff', str)
+    str = re.sub ('\\\\property *[^ .]*[.]?noAutoBeaming[^=]*= *#?"?(0|(""))"?', '\\\\autoBeamOn', str)
+    str = re.sub ('\\\\property *[^ .]*[.]?noAutoBeaming[^=]*= *#?"?([1-9]+)"?', '\\\\autoBeamOff', str)
 
 
 
-       return str
+    return str
 
 conversions.append (((1,3,93), conv,
        'property definiton case (eg. onevoice -> oneVoice)'))
@@ -532,15 +535,15 @@ conversions.append (((1,3,93), conv,
 
 
 def conv (str):
-       str = re.sub ('ChordNames*', 'ChordNames', str)
-       if re.search ('\\\\textscript "[^"]* *"[^"]*"', str):
-               error_file.write ('\n')
-               error_file.write (NOT_SMART % "new \\textscript markup text")
-               error_file.write ('\n')
+    str = re.sub ('ChordNames*', 'ChordNames', str)
+    if re.search ('\\\\textscript "[^"]* *"[^"]*"', str):
+       error_file.write ('\n')
+       error_file.write (NOT_SMART % "new \\textscript markup text")
+       error_file.write ('\n')
 
-       str = re.sub ('\\textscript +("[^"]*")', '\\textscript #\\1', str)
+    str = re.sub ('\\textscript +("[^"]*")', '\\textscript #\\1', str)
 
-       return str
+    return str
 
 conversions.append (((1,3,97), conv, 'ChordName -> ChordNames'))
 
@@ -549,213 +552,213 @@ conversions.append (((1,3,97), conv, 'ChordName -> ChordNames'))
 
 
 def conv (str):
-       str = re.sub ('\\\\property *"?Voice"? *[.] *"?textStyle"? *= *"([^"]*)"', '\\\\property Voice.TextScript \\\\set #\'font-style = #\'\\1', str)
-       str = re.sub ('\\\\property *"?Lyrics"? *[.] *"?textStyle"? *= *"([^"]*)"', '\\\\property Lyrics.LyricText \\\\set #\'font-style = #\'\\1', str)
+    str = re.sub ('\\\\property *"?Voice"? *[.] *"?textStyle"? *= *"([^"]*)"', '\\\\property Voice.TextScript \\\\set #\'font-style = #\'\\1', str)
+    str = re.sub ('\\\\property *"?Lyrics"? *[.] *"?textStyle"? *= *"([^"]*)"', '\\\\property Lyrics.LyricText \\\\set #\'font-style = #\'\\1', str)
 
-       str = re.sub ('\\\\property *"?([^.]+)"? *[.] *"?timeSignatureStyle"? *= *"([^"]*)"', '\\\\property \\1.TimeSignature \\\\override #\'style = #\'\\2', str)
+    str = re.sub ('\\\\property *"?([^.]+)"? *[.] *"?timeSignatureStyle"? *= *"([^"]*)"', '\\\\property \\1.TimeSignature \\\\override #\'style = #\'\\2', str)
 
-       str = re.sub ('"?timeSignatureStyle"? *= *#?""', 'TimeSignature \\\\override #\'style = ##f', str)
+    str = re.sub ('"?timeSignatureStyle"? *= *#?""', 'TimeSignature \\\\override #\'style = ##f', str)
 
-       str = re.sub ('"?timeSignatureStyle"? *= *#?"([^"]*)"', 'TimeSignature \\\\override #\'style = #\'\\1', str)
+    str = re.sub ('"?timeSignatureStyle"? *= *#?"([^"]*)"', 'TimeSignature \\\\override #\'style = #\'\\1', str)
 
-       str = re.sub ('#\'style *= #*"([^"])"', '#\'style = #\'\\1', str)
+    str = re.sub ('#\'style *= #*"([^"])"', '#\'style = #\'\\1', str)
 
-       str = re.sub ('\\\\property *"?([^.]+)"? *[.] *"?horizontalNoteShift"? *= *"?#?([-0-9]+)"?', '\\\\property \\1.NoteColumn \\\\override #\'horizontal-shift = #\\2', str)
+    str = re.sub ('\\\\property *"?([^.]+)"? *[.] *"?horizontalNoteShift"? *= *"?#?([-0-9]+)"?', '\\\\property \\1.NoteColumn \\\\override #\'horizontal-shift = #\\2', str)
 
-       # ugh
-       str = re.sub ('\\\\property *"?([^.]+)"? *[.] *"?flagStyle"? *= *""', '\\\\property \\1.Stem \\\\override #\'flag-style = ##f', str)
+    # ugh
+    str = re.sub ('\\\\property *"?([^.]+)"? *[.] *"?flagStyle"? *= *""', '\\\\property \\1.Stem \\\\override #\'flag-style = ##f', str)
 
-       str = re.sub ('\\\\property *"?([^.]+)"? *[.] *"?flagStyle"? *= *"([^"]*)"', '\\\\property \\1.Stem \\\\override #\'flag-style = #\'\\2', str)
-       return str
+    str = re.sub ('\\\\property *"?([^.]+)"? *[.] *"?flagStyle"? *= *"([^"]*)"', '\\\\property \\1.Stem \\\\override #\'flag-style = #\'\\2', str)
+    return str
 
 conversions.append (((1,3,98), conv, 'CONTEXT.textStyle -> GROB.#font-style '))
 
 
 def conv (str):
-       str = re.sub ('"?beamAutoEnd_([0-9]*)"? *= *(#\\([^)]*\\))', 'autoBeamSettings \\push #\'(end 1 \\1 * *) = \\2', str)
-       str = re.sub ('"?beamAutoBegin_([0-9]*)"? *= *(#\\([^)]*\))', 'autoBeamSettings \\push #\'(begin 1 \\1 * *) = \\2', str)
-       str = re.sub ('"?beamAutoEnd"? *= *(#\\([^)]*\\))', 'autoBeamSettings \\push #\'(end * * * *) = \\1', str)
-       str = re.sub ('"?beamAutoBegin"? *= *(#\\([^)]*\\))', 'autoBeamSettings \\push #\'(begin * * * *) = \\1', str)
+    str = re.sub ('"?beamAutoEnd_([0-9]*)"? *= *(#\\([^)]*\\))', 'autoBeamSettings \\push #\'(end 1 \\1 * *) = \\2', str)
+    str = re.sub ('"?beamAutoBegin_([0-9]*)"? *= *(#\\([^)]*\))', 'autoBeamSettings \\push #\'(begin 1 \\1 * *) = \\2', str)
+    str = re.sub ('"?beamAutoEnd"? *= *(#\\([^)]*\\))', 'autoBeamSettings \\push #\'(end * * * *) = \\1', str)
+    str = re.sub ('"?beamAutoBegin"? *= *(#\\([^)]*\\))', 'autoBeamSettings \\push #\'(begin * * * *) = \\1', str)
 
 
-       return str
+    return str
 
 conversions.append (((1,3,102), conv, 'beamAutoEnd -> autoBeamSettings \\push (end * * * *)'))
 
 
 
 def conv (str):
-       str = re.sub ('\\\\push', '\\\\override', str)
-       str = re.sub ('\\\\pop', '\\\\revert', str)
+    str = re.sub ('\\\\push', '\\\\override', str)
+    str = re.sub ('\\\\pop', '\\\\revert', str)
 
-       return str
+    return str
 
 conversions.append (((1,3,111), conv, '\\push -> \\override, \\pop -> \\revert'))
 
 
 def conv (str):
-       str = re.sub ('LyricVoice', 'LyricsVoice', str)
-       # old fix
-       str = re.sub ('Chord[Nn]ames*.Chord[Nn]ames*', 'ChordNames.ChordName', str)
-       str = re.sub ('Chord[Nn]ames([ \t\n]+\\\\override)', 'ChordName\\1', str)
-       return str
+    str = re.sub ('LyricVoice', 'LyricsVoice', str)
+    # old fix
+    str = re.sub ('Chord[Nn]ames*.Chord[Nn]ames*', 'ChordNames.ChordName', str)
+    str = re.sub ('Chord[Nn]ames([ \t\n]+\\\\override)', 'ChordName\\1', str)
+    return str
 
 conversions.append (((1,3,113), conv, 'LyricVoice -> LyricsVoice'))
 
 def conv (str):
-       def regularize_id (str):
-               s = ''
-               lastx = ''
-               for x in str:
-                       if x == '_':
-                               lastx = x
-                               continue
-                       elif x in string.digits:
-                               x = chr(ord (x) - ord ('0')  +ord ('A'))
-                       elif x not in string.letters:
-                               x = 'x'
-                       elif x in string.lowercase and lastx == '_':
-                               x = string.upper (x)
-                       s = s + x
-                       lastx = x
-               return s
-
-               def regularize_dollar_reference (match):
-                       return regularize_id (match.group (1))
-               def regularize_assignment (match):
-                       return '\n' + regularize_id (match.group (1)) + ' = '
-               str = re.sub ('\$([^\t\n ]+)', regularize_dollar_reference, str)
-               str = re.sub ('\n([^ \t\n]+)[ \t]*= *', regularize_assignment, str)
-               return str
+    def regularize_id (str):
+       s = ''
+       lastx = ''
+       for x in str:
+           if x == '_':
+               lastx = x
+               continue
+           elif x in string.digits:
+               x = chr(ord (x) - ord ('0')  +ord ('A'))
+           elif x not in string.letters:
+               x = 'x'
+           elif x in string.lowercase and lastx == '_':
+               x = string.upper (x)
+           s = s + x
+           lastx = x
+       return s
+
+       def regularize_dollar_reference (match):
+           return regularize_id (match.group (1))
+       def regularize_assignment (match):
+           return '\n' + regularize_id (match.group (1)) + ' = '
+       str = re.sub ('\$([^\t\n ]+)', regularize_dollar_reference, str)
+       str = re.sub ('\n([^ \t\n]+)[ \t]*= *', regularize_assignment, str)
+       return str
 
 conversions.append (((1,3,117), conv, 'identifier names: $!foo_bar_123 -> xfooBarABC'))
 
 
 
 def conv (str):
-       def regularize_paper (match):
-               return regularize_id (match.group (1))
+    def regularize_paper (match):
+       return regularize_id (match.group (1))
 
-       str = re.sub ('(paper_[a-z]+)', regularize_paper, str)
-       str = re.sub ('sustainup', 'sustainUp', str)
-       str = re.sub ('nobreak', 'noBreak', str)
-       str = re.sub ('sustaindown', 'sustainDown', str)
-       str = re.sub ('sostenutoup', 'sostenutoUp', str)
-       str = re.sub ('sostenutodown', 'sostenutoDown', str)
-       str = re.sub ('unachorda', 'unaChorda', str)
-       str = re.sub ('trechorde', 'treChorde', str)
+    str = re.sub ('(paper_[a-z]+)', regularize_paper, str)
+    str = re.sub ('sustainup', 'sustainUp', str)
+    str = re.sub ('nobreak', 'noBreak', str)
+    str = re.sub ('sustaindown', 'sustainDown', str)
+    str = re.sub ('sostenutoup', 'sostenutoUp', str)
+    str = re.sub ('sostenutodown', 'sostenutoDown', str)
+    str = re.sub ('unachorda', 'unaChorda', str)
+    str = re.sub ('trechorde', 'treChorde', str)
 
-       return str
+    return str
 
 conversions.append (((1,3,120), conv, 'paper_xxx -> paperXxxx, pedalup -> pedalUp.'))
 
 
 def conv (str):
-       str = re.sub ('drarnChords', 'chordChanges', str)
-       str = re.sub ('\\musicalpitch', '\\pitch', str)
-       return str
+    str = re.sub ('drarnChords', 'chordChanges', str)
+    str = re.sub ('\\musicalpitch', '\\pitch', str)
+    return str
 
 conversions.append (((1,3,122), conv, 'drarnChords -> chordChanges, \\musicalpitch -> \\pitch'))
 
 
 def conv (str):
-       str = re.sub ('ly-([sg])et-elt-property', 'ly-\\1et-grob-property', str)
-       return str
+    str = re.sub ('ly-([sg])et-elt-property', 'ly-\\1et-grob-property', str)
+    return str
 
 conversions.append (((1,3,136), conv, 'ly-X-elt-property -> ly-X-grob-property'))
 
 
 def conv (str):
-       str = re.sub ('point-and-click +#t', 'point-and-click line-column-location', str)
-       return str
+    str = re.sub ('point-and-click +#t', 'point-and-click line-column-location', str)
+    return str
 
 conversions.append (((1,3,138), conv, 'point-and-click argument changed to procedure.'))
 
 
 def conv (str):
-       str = re.sub ('followThread', 'followVoice', str)
-       str = re.sub ('Thread.FollowThread', 'Voice.VoiceFollower', str)
-       str = re.sub ('FollowThread', 'VoiceFollower', str)
-       return str
+    str = re.sub ('followThread', 'followVoice', str)
+    str = re.sub ('Thread.FollowThread', 'Voice.VoiceFollower', str)
+    str = re.sub ('FollowThread', 'VoiceFollower', str)
+    return str
 
 conversions.append (((1,3,138), conv, 'followThread -> followVoice.'))
 
 
 def conv (str):
-       str = re.sub ('font-point-size', 'font-design-size', str)
-       return str
+    str = re.sub ('font-point-size', 'font-design-size', str)
+    return str
 
 conversions.append (((1,3,139), conv, 'font-point-size -> font-design-size.'))
 
 
 def conv (str):
-       str = re.sub ('([a-zA-Z]*)NoDots', '\\1Solid', str)
-       return str
+    str = re.sub ('([a-zA-Z]*)NoDots', '\\1Solid', str)
+    return str
 
 conversions.append (((1,3,141), conv, 'xNoDots -> xSolid'))
 
 
 def conv (str):
-       str = re.sub ('([Cc])hord([ea])', '\\1ord\\2', str)
-       return str
+    str = re.sub ('([Cc])hord([ea])', '\\1ord\\2', str)
+    return str
 
 conversions.append (((1,3,144), conv, 'Chorda -> Corda'))
 
 
 
 def conv (str):
-       str = re.sub ('([A-Za-z]+)MinimumVerticalExtent', 'MinimumV@rticalExtent', str)
-       str = re.sub ('([A-Za-z]+)ExtraVerticalExtent', 'ExtraV@rticalExtent', str)
-       str = re.sub ('([A-Za-z]+)VerticalExtent', 'VerticalExtent', str)
-       str = re.sub ('ExtraV@rticalExtent', 'ExtraVerticalExtent', str)
-       str = re.sub ('MinimumV@rticalExtent', 'MinimumVerticalExtent', str)
-       return str
+    str = re.sub ('([A-Za-z]+)MinimumVerticalExtent', 'MinimumV@rticalExtent', str)
+    str = re.sub ('([A-Za-z]+)ExtraVerticalExtent', 'ExtraV@rticalExtent', str)
+    str = re.sub ('([A-Za-z]+)VerticalExtent', 'VerticalExtent', str)
+    str = re.sub ('ExtraV@rticalExtent', 'ExtraVerticalExtent', str)
+    str = re.sub ('MinimumV@rticalExtent', 'MinimumVerticalExtent', str)
+    return str
 
 conversions.append (((1,3,145), conv,
 'ContextNameXxxxVerticalExtent -> XxxxVerticalExtent'))
 
 
 def conv (str):
-       str = re.sub ('\\\\key[ \t]*;', '\\key \\default;', str)
-       str = re.sub ('\\\\mark[ \t]*;', '\\mark \\default;', str)
+    str = re.sub ('\\\\key[ \t]*;', '\\key \\default;', str)
+    str = re.sub ('\\\\mark[ \t]*;', '\\mark \\default;', str)
 
-       # Make sure groups of more than one ; have space before
-       # them, so that non of them gets removed by next rule
-       str = re.sub ("([^ \n\t;]);(;+)", "\\1 ;\\2", str)
+    # Make sure groups of more than one ; have space before
+    # them, so that non of them gets removed by next rule
+    str = re.sub ("([^ \n\t;]);(;+)", "\\1 ;\\2", str)
 
-       # Only remove ; that are not after spaces, # or ;
-       # Otherwise  we interfere with Scheme comments,
-       # which is badbadbad.
-       str = re.sub ("([^ \t;#]);", "\\1", str)
+    # Only remove ; that are not after spaces, # or ;
+    # Otherwise  we interfere with Scheme comments,
+    # which is badbadbad.
+    str = re.sub ("([^ \t;#]);", "\\1", str)
 
-       return str
+    return str
 conversions.append (((1,3,146), conv, 'semicolons removed'))
 
 
 def conv (str):
-       str = re.sub ('default-neutral-direction', 'neutral-direction',str)
-       return str
+    str = re.sub ('default-neutral-direction', 'neutral-direction',str)
+    return str
 conversions.append (((1,3,147), conv, 'default-neutral-direction -> neutral-direction'))
 
 
 def conv (str):
-       str = re.sub ('\(align', '(axis', str)
-       str = re.sub ('\(rows', '(columns', str)
-       return str
+    str = re.sub ('\(align', '(axis', str)
+    str = re.sub ('\(rows', '(columns', str)
+    return str
 conversions.append (((1,3,148), conv, '"(align" -> "(axis", "(rows" -> "(columns"'))
 
 
 
 def conv (str):
-       str = re.sub ('SystemStartDelimiter', 'systemStartDelimiter', str)
-       return str
+    str = re.sub ('SystemStartDelimiter', 'systemStartDelimiter', str)
+    return str
 conversions.append (((1,5,33), conv, 'SystemStartDelimiter -> systemStartDelimiter'))
 
 
 def conv (str):
-       str = re.sub ('arithmetic-multiplier', 'spacing-increment', str)
-       str = re.sub ('arithmetic-basicspace', 'shortest-duration-space', str)
-       return str
+    str = re.sub ('arithmetic-multiplier', 'spacing-increment', str)
+    str = re.sub ('arithmetic-basicspace', 'shortest-duration-space', str)
+    return str
 
 conversions.append (((1,5,38), conv, 'SystemStartDelimiter -> systemStartDelimiter'))
 
@@ -763,26 +766,26 @@ conversions.append (((1,5,38), conv, 'SystemStartDelimiter -> systemStartDelimit
 
 def conv (str):
 
-       def func(match):
-               break_dict = {
-               "Instrument_name": "instrument-name",
-               "Left_edge_item": "left-edge",
-               "Span_bar": "span-bar",
-               "Breathing_sign": "breathing-sign",
-               "Staff_bar": "staff-bar",
-               "Clef_item": "clef",
-               "Key_item": "key-signature",
-               "Time_signature": "time-signature",
-               "Custos": "custos"
-               }
-               props =  match.group (1)
-               for (k,v) in break_dict.items():
-                       props = re.sub (k, v, props)
-               return  "breakAlignOrder = #'(%s)" % props
+    def func(match):
+       break_dict = {
+       "Instrument_name": "instrument-name",
+       "Left_edge_item": "left-edge",
+       "Span_bar": "span-bar",
+       "Breathing_sign": "breathing-sign",
+       "Staff_bar": "staff-bar",
+       "Clef_item": "clef",
+       "Key_item": "key-signature",
+       "Time_signature": "time-signature",
+       "Custos": "custos"
+       }
+       props =  match.group (1)
+       for (k,v) in break_dict.items():
+           props = re.sub (k, v, props)
+       return  "breakAlignOrder = #'(%s)" % props
 
-       str = re.sub ("breakAlignOrder *= *#'\\(([a-z_\n\tA-Z ]+)\\)",
-                     func, str)
-       return str
+    str = re.sub ("breakAlignOrder *= *#'\\(([a-z_\n\tA-Z ]+)\\)",
+                 func, str)
+    return str
 
 # 40 ?
 conversions.append (((1,5,40), conv, 'breakAlignOrder property names'))
@@ -790,55 +793,55 @@ conversions.append (((1,5,40), conv, 'breakAlignOrder property names'))
 
 
 def conv (str):
-       str = re.sub ('noAutoBeaming *= *##f', 'autoBeaming = ##t', str)
-       str = re.sub ('noAutoBeaming *= *##t', 'autoBeaming = ##f', str)
-       return str
+    str = re.sub ('noAutoBeaming *= *##f', 'autoBeaming = ##t', str)
+    str = re.sub ('noAutoBeaming *= *##t', 'autoBeaming = ##f', str)
+    return str
 
 conversions.append (((1,5,49), conv, 'noAutoBeaming -> autoBeaming'))
 
 
 def conv (str):
-       str = re.sub ('tuplet-bracket-visibility', 'bracket-visibility', str)
-       str = re.sub ('tuplet-number-visibility', 'number-visibility', str)
-       return str
+    str = re.sub ('tuplet-bracket-visibility', 'bracket-visibility', str)
+    str = re.sub ('tuplet-number-visibility', 'number-visibility', str)
+    return str
 
 conversions.append (((1,5,52), conv, 'tuplet-X-visibility -> X-visibility'))
 
 
 def conv (str):
-       str = re.sub ('Pitch::transpose', 'ly-transpose-pitch', str)
+    str = re.sub ('Pitch::transpose', 'ly-transpose-pitch', str)
 
-       return str
+    return str
 
 conversions.append (((1,5,56), conv, 'Pitch::transpose -> ly-transpose-pitch'))
 
 
 def conv (str):
-       str = re.sub ('textNonEmpty *= *##t', "TextScript \\set #'no-spacing-rods = ##f", str)
-       str = re.sub ('textNonEmpty *= *##f', "TextScript \\set #'no-spacing-rods = ##t", str)
-       return str
+    str = re.sub ('textNonEmpty *= *##t', "TextScript \\set #'no-spacing-rods = ##f", str)
+    str = re.sub ('textNonEmpty *= *##f', "TextScript \\set #'no-spacing-rods = ##t", str)
+    return str
 
 conversions.append (((1,5,58), conv, 'deprecate textNonEmpty'))
 
 
 
 def conv (str):
-       str = re.sub ('MinimumVerticalExtent', 'minimumV@rticalExtent', str)
-       str = re.sub ('minimumVerticalExtent', 'minimumV@rticalExtent', str)
-       str = re.sub ('ExtraVerticalExtent', 'extraV@rticalExtent', str)
-       str = re.sub ('extraVerticalExtent', 'extraV@rticalExtent', str)
-       str = re.sub ('VerticalExtent', 'verticalExtent', str)
-       str = re.sub ('extraV@rticalExtent', 'extraVerticalExtent', str)
-       str = re.sub ('minimumV@rticalExtent', 'minimumVerticalExtent', str)
-       return str
+    str = re.sub ('MinimumVerticalExtent', 'minimumV@rticalExtent', str)
+    str = re.sub ('minimumVerticalExtent', 'minimumV@rticalExtent', str)
+    str = re.sub ('ExtraVerticalExtent', 'extraV@rticalExtent', str)
+    str = re.sub ('extraVerticalExtent', 'extraV@rticalExtent', str)
+    str = re.sub ('VerticalExtent', 'verticalExtent', str)
+    str = re.sub ('extraV@rticalExtent', 'extraVerticalExtent', str)
+    str = re.sub ('minimumV@rticalExtent', 'minimumVerticalExtent', str)
+    return str
 
 conversions.append (((1,5,59), conv,
 'XxxxVerticalExtent -> xxxVerticalExtent'))
 
 
 def conv (str):
-       str = re.sub ('visibility-lambda', 'break-visibility', str)
-       return str
+    str = re.sub ('visibility-lambda', 'break-visibility', str)
+    return str
 
 conversions.append (((1,5,62), conv,
 'visibility-lambda -> break-visibility'))
@@ -846,65 +849,65 @@ conversions.append (((1,5,62), conv,
 
 
 def conv (str):
-       if re.search (r'\addlyrics',str) \
-              and re.search ('automaticMelismata', str)  == None:
-               error_file.write ('\n')
-               error_file.write (NOT_SMART % "automaticMelismata; turned on by default since 1.5.67.")
-               error_file.write ('\n')
-               raise FatalConversionError ()
-       return str
+    if re.search (r'\addlyrics',str) \
+          and re.search ('automaticMelismata', str)  == None:
+       error_file.write ('\n')
+       error_file.write (NOT_SMART % "automaticMelismata; turned on by default since 1.5.67.")
+       error_file.write ('\n')
+       raise FatalConversionError ()
+    return str
 
 conversions.append (((1,5,67), conv,
                     'automaticMelismata turned on by default'))
 
 
 def conv (str):
-       str = re.sub ('ly-set-grob-property([^!])', 'ly-set-grob-property!\1', str)
-       str = re.sub ('ly-set-mus-property([^!])', 'ly-set-mus-property!\1', str)
-       return str
+    str = re.sub ('ly-set-grob-property([^!])', 'ly-set-grob-property!\1', str)
+    str = re.sub ('ly-set-mus-property([^!])', 'ly-set-mus-property!\1', str)
+    return str
 
 conversions.append (((1,5,68), conv, 'ly-set-X-property -> ly-set-X-property!'))
 
 
 def conv (str):
-       str = re.sub ('extent-X', 'X-extent', str)
-       str = re.sub ('extent-Y', 'Y-extent', str)
-       return str
+    str = re.sub ('extent-X', 'X-extent', str)
+    str = re.sub ('extent-Y', 'Y-extent', str)
+    return str
 
 conversions.append (((1,5,71), conv, 'extent-[XY] -> [XY]-extent'))
 
 
 
 def conv (str):
-       str = re.sub ("""#\(set! +point-and-click +line-column-location\)""",
-                     """#(set-point-and-click! \'line-column)""", str)
-       str = re.sub ("""#\(set![ \t]+point-and-click +line-location\)""",
-                     '#(set-point-and-click! \'line)', str)
-       str = re.sub ('#\(set! +point-and-click +#f\)',
-                     '#(set-point-and-click! \'none)', str)
-       return str
+    str = re.sub ("""#\(set! +point-and-click +line-column-location\)""",
+                 """#(set-point-and-click! \'line-column)""", str)
+    str = re.sub ("""#\(set![ \t]+point-and-click +line-location\)""",
+                 '#(set-point-and-click! \'line)', str)
+    str = re.sub ('#\(set! +point-and-click +#f\)',
+                 '#(set-point-and-click! \'none)', str)
+    return str
 
 conversions.append (((1,5,72), conv, 'set! point-and-click -> set-point-and-click!'))
 
 
 
 def conv (str):
-       str = re.sub ('flag-style', 'stroke-style', str)
-       str = re.sub (r"""Stem([ ]+)\\override #'style""", r"""Stem \\override #'flag-style""", str);
-       str = re.sub (r"""Stem([ ]+)\\set([ ]+)#'style""", r"""Stem \\set #'flag-style""", str);
-       return str
+    str = re.sub ('flag-style', 'stroke-style', str)
+    str = re.sub (r"""Stem([ ]+)\\override #'style""", r"""Stem \\override #'flag-style""", str);
+    str = re.sub (r"""Stem([ ]+)\\set([ ]+)#'style""", r"""Stem \\set #'flag-style""", str);
+    return str
 
 conversions.append (((1,6,5), conv, 'Stems: flag-style -> stroke-style; style -> flag-style'))
 
 
 
 def subst_req_name (match):
-       return "(make-music-by-name \'%sEvent)" % regularize_id (match.group(1))
+    return "(make-music-by-name \'%sEvent)" % regularize_id (match.group(1))
 
 def conv (str):
-       str = re.sub ('\\(ly-make-music *\"([A-Z][a-z_]+)_req\"\\)', subst_req_name, str)
-       str = re.sub ('Request_chord', 'EventChord', str)
-       return str
+    str = re.sub ('\\(ly-make-music *\"([A-Z][a-z_]+)_req\"\\)', subst_req_name, str)
+    str = re.sub ('Request_chord', 'EventChord', str)
+    return str
 
 conversions.append (((1,7,1), conv, 'ly-make-music foo_bar_req -> make-music-by-name FooBarEvent'))
 
@@ -920,186 +923,186 @@ spanner_subst ={
        "Sostenuto" : 'SostenutoEvent',
        }
 def subst_ev_name (match):
-       stype = 'STOP'
-       if re.search ('start', match.group(1)):
-               stype= 'START'
+    stype = 'STOP'
+    if re.search ('start', match.group(1)):
+       stype= 'START'
 
-       mtype = spanner_subst[match.group(2)]
-       return "(make-span-event '%s %s)" % (mtype , stype)
+    mtype = spanner_subst[match.group(2)]
+    return "(make-span-event '%s %s)" % (mtype , stype)
 
 def subst_definition_ev_name(match):
-       return ' = #%s' % subst_ev_name (match)
+    return ' = #%s' % subst_ev_name (match)
 def subst_inline_ev_name (match):
-       s = subst_ev_name (match)
-       return '#(ly-export %s)' % s
+    s = subst_ev_name (match)
+    return '#(ly-export %s)' % s
 def subst_csp_definition (match):
-       return ' = #(make-event-chord (list %s))' % subst_ev_name (match)
+    return ' = #(make-event-chord (list %s))' % subst_ev_name (match)
 def subst_csp_inline (match):
-       return '#(ly-export (make-event-chord (list %s)))' % subst_ev_name (match)
+    return '#(ly-export (make-event-chord (list %s)))' % subst_ev_name (match)
 
 def conv (str):
-       str = re.sub (r' *= *\\spanrequest *([^ ]+) *"([^"]+)"', subst_definition_ev_name, str)
-       str = re.sub (r'\\spanrequest *([^ ]+) *"([^"]+)"', subst_inline_ev_name, str)
-       str = re.sub (r' *= *\\commandspanrequest *([^ ]+) *"([^"]+)"', subst_csp_definition, str)
-       str = re.sub (r'\\commandspanrequest *([^ ]+) *"([^"]+)"', subst_csp_inline, str)
-       str = re.sub (r'ly-id ', 'ly-import ', str)
+    str = re.sub (r' *= *\\spanrequest *([^ ]+) *"([^"]+)"', subst_definition_ev_name, str)
+    str = re.sub (r'\\spanrequest *([^ ]+) *"([^"]+)"', subst_inline_ev_name, str)
+    str = re.sub (r' *= *\\commandspanrequest *([^ ]+) *"([^"]+)"', subst_csp_definition, str)
+    str = re.sub (r'\\commandspanrequest *([^ ]+) *"([^"]+)"', subst_csp_inline, str)
+    str = re.sub (r'ly-id ', 'ly-import ', str)
 
-       str = re.sub (r' *= *\\script "([^"]+)"', ' = #(make-articulation "\\1")', str)
-       str = re.sub (r'\\script "([^"]+)"', '#(ly-export (make-articulation "\\1"))', str)
-       return str
+    str = re.sub (r' *= *\\script "([^"]+)"', ' = #(make-articulation "\\1")', str)
+    str = re.sub (r'\\script "([^"]+)"', '#(ly-export (make-articulation "\\1"))', str)
+    return str
 
 conversions.append (((1,7,2), conv, '\\spanrequest -> #(make-span-event .. ), \script -> #(make-articulation .. )'))
 
 
 def conv(str):
-       str = re.sub (r'\(ly-', '(ly:', str)
-
-       changed = [
-               r'duration\?',
-               r'font-metric\?',
-               r'molecule\?',
-               r'moment\?',
-               r'music\?',
-               r'pitch\?',
-               'make-duration',
-               'music-duration-length',
-               'duration-log',
-               'duration-dotcount',
-               'intlog2',
-               'duration-factor',
-               'transpose-key-alist',
-               'get-system',
-               'get-broken-into',
-               'get-original',
-               'set-point-and-click!',
-               'make-moment',
-               'make-pitch',
-               'pitch-octave',
-               'pitch-alteration',
-               'pitch-notename',
-               'pitch-semitones',
-               r'pitch<\?',
-               r'dir\?',
-               'music-duration-compress',
-               'set-point-and-click!'
-               ]
-
-       origre = r'\b(%s)' % string.join (changed, '|')
-
-       str = re.sub (origre, r'ly:\1',str)
-       str = re.sub ('set-point-and-click!', 'set-point-and-click', str)
-
-       return str
+    str = re.sub (r'\(ly-', '(ly:', str)
+
+    changed = [
+           r'duration\?',
+           r'font-metric\?',
+           r'molecule\?',
+           r'moment\?',
+           r'music\?',
+           r'pitch\?',
+           'make-duration',
+           'music-duration-length',
+           'duration-log',
+           'duration-dotcount',
+           'intlog2',
+           'duration-factor',
+           'transpose-key-alist',
+           'get-system',
+           'get-broken-into',
+           'get-original',
+           'set-point-and-click!',
+           'make-moment',
+           'make-pitch',
+           'pitch-octave',
+           'pitch-alteration',
+           'pitch-notename',
+           'pitch-semitones',
+           r'pitch<\?',
+           r'dir\?',
+           'music-duration-compress',
+           'set-point-and-click!'
+           ]
+
+    origre = r'\b(%s)' % string.join (changed, '|')
+
+    str = re.sub (origre, r'ly:\1',str)
+    str = re.sub ('set-point-and-click!', 'set-point-and-click', str)
+
+    return str
 
 conversions.append (((1,7,3), conv, 'ly- -> ly:'))
 
 
 def conv(str):
-       if re.search ('new-chords-done',str):
-               return str
-
-       str = re.sub (r'<<', '< <', str)
-       str = re.sub (r'>>', '> >', str)
+    if re.search ('new-chords-done',str):
        return str
 
+    str = re.sub (r'<<', '< <', str)
+    str = re.sub (r'>>', '> >', str)
+    return str
+
 conversions.append (((1,7,4), conv, '<< >> -> < <  > >'))
 
 
 def conv(str):
-       str = re.sub (r"\\transpose", r"\\transpose c'", str)
-       str = re.sub (r"\\transpose c' *([a-z]+)'", r"\\transpose c \1", str)
-       return str
+    str = re.sub (r"\\transpose", r"\\transpose c'", str)
+    str = re.sub (r"\\transpose c' *([a-z]+)'", r"\\transpose c \1", str)
+    return str
 conversions.append (((1,7,5), conv, '\\transpose TO -> \\transpose FROM  TO'))
 
 
 def conv(str):
-       kws =   ['arpeggio',
-                'sustainDown',
-                'sustainUp',
-                'f',
-                'p',
-                'pp',
-                'ppp',
-                'fp',
-                'ff',
-                'mf',
-                'mp',
-                'sfz',
-                ]
-
-       origstr = string.join (kws, '|')
-       str = re.sub (r'([^_^-])\\(%s)\b' % origstr, r'\1-\\\2', str)
-       return str
+    kws =   ['arpeggio',
+            'sustainDown',
+            'sustainUp',
+            'f',
+            'p',
+            'pp',
+            'ppp',
+            'fp',
+            'ff',
+            'mf',
+            'mp',
+            'sfz',
+            ]
+
+    origstr = string.join (kws, '|')
+    str = re.sub (r'([^_^-])\\(%s)\b' % origstr, r'\1-\\\2', str)
+    return str
 conversions.append (((1,7,6), conv, 'note\\script -> note-\script'))
 
 
 
 def conv(str):
-       str = re.sub (r"\\property *ChordNames *\. *ChordName *\\(set|override) *#'style *= *#('[a-z]+)",
-                     r"#(set-chord-name-style \2)", str)
-       str = re.sub (r"\\property *ChordNames *\. *ChordName *\\revert *#'style",
-                     r"", str)
-       return str
+    str = re.sub (r"\\property *ChordNames *\. *ChordName *\\(set|override) *#'style *= *#('[a-z]+)",
+                 r"#(set-chord-name-style \2)", str)
+    str = re.sub (r"\\property *ChordNames *\. *ChordName *\\revert *#'style",
+                 r"", str)
+    return str
 conversions.append (((1,7,10), conv, "\property ChordName #'style -> #(set-chord-name-style 'style)"))
 
 
 
 
 def conv(str):
-       str = re.sub (r"ly:transpose-pitch", "ly:pitch-transpose", str)
+    str = re.sub (r"ly:transpose-pitch", "ly:pitch-transpose", str)
 
-       return str
+    return str
 conversions.append (((1,7,11), conv, "transpose-pitch -> pitch-transpose"))
 
 
 def conv(str):
-       str = re.sub (r"ly:get-molecule-extent", "ly:molecule-get-extent", str)
-       str = re.sub (r"ly:set-molecule-extent!", "ly:molecule-set-extent!", str)
-       str = re.sub (r"ly:add-molecule", "ly:molecule-add", str)
-       str = re.sub (r"ly:combine-molecule-at-edge", "ly:molecule-combine-at-edge", str)
-       str = re.sub (r"ly:align-to!", "ly:molecule-align-to!", str)
+    str = re.sub (r"ly:get-molecule-extent", "ly:molecule-get-extent", str)
+    str = re.sub (r"ly:set-molecule-extent!", "ly:molecule-set-extent!", str)
+    str = re.sub (r"ly:add-molecule", "ly:molecule-add", str)
+    str = re.sub (r"ly:combine-molecule-at-edge", "ly:molecule-combine-at-edge", str)
+    str = re.sub (r"ly:align-to!", "ly:molecule-align-to!", str)
 
-       return str
+    return str
 
 conversions.append (((1,7,13), conv, "ly:XX-molecule-YY -> ly:molecule-XX-YY"))
 
 
 def conv(str):
-       str = re.sub (r"linewidth *= *-[0-9.]+ *(\\mm|\\cm|\\in|\\pt)?", 'raggedright = ##t', str )
-       return str
+    str = re.sub (r"linewidth *= *-[0-9.]+ *(\\mm|\\cm|\\in|\\pt)?", 'raggedright = ##t', str )
+    return str
 
 conversions.append (((1,7,15), conv, "linewidth = -1 -> raggedright = ##t"))
 
 
 def conv(str):
-       str = re.sub ("divisiomaior",
-                     "divisioMaior", str)
-       str = re.sub ("divisiominima",
-                     "divisioMinima", str)
-       str = re.sub ("divisiomaxima",
-                     "divisioMaxima", str)
-       return str
+    str = re.sub ("divisiomaior",
+                 "divisioMaior", str)
+    str = re.sub ("divisiominima",
+                 "divisioMinima", str)
+    str = re.sub ("divisiomaxima",
+                 "divisioMaxima", str)
+    return str
 
 conversions.append (((1,7,16), conv, "divisiomaior -> divisioMaior"))
 
 
 def conv(str):
-       str = re.sub ("Skip_req_swallow_translator",
-                     "Skip_event_swallow_translator", str)
-       return str
+    str = re.sub ("Skip_req_swallow_translator",
+                 "Skip_event_swallow_translator", str)
+    return str
 
 conversions.append (((1,7,17), conv, "Skip_req  -> Skip_event"))
 
 
 def conv(str):
-       str = re.sub ("groupOpen",
-                     "startGroup", str)
-       str = re.sub ("groupClose",
-                     "stopGroup", str)
-       str = re.sub ("#'outer",
-                     "#'enclose-bounds", str)
+    str = re.sub ("groupOpen",
+                 "startGroup", str)
+    str = re.sub ("groupClose",
+                 "stopGroup", str)
+    str = re.sub ("#'outer",
+                 "#'enclose-bounds", str)
 
-       return str
+    return str
 
 conversions.append (((1,7,18), conv,
                     """groupOpen/Close  -> start/stopGroup,
@@ -1108,18 +1111,18 @@ conversions.append (((1,7,18), conv,
 
 
 def conv(str):
-       if re.search( r'\\GraceContext', str):
-               error_file.write ('\n')
-               error_file.write (NOT_SMART % "GraceContext")
-               error_file.write (FROM_TO \
-                                 % ("GraceContext", "#(add-to-grace-init .. )"))
-               error_file.write ('\n')
-               error_file.write (UPDATE_MANUALLY)
-               error_file.write ('\n')
-               raise FatalConversionError ()
-
-       str = re.sub ('HaraKiriStaffContext', 'RemoveEmptyStaffContext', str)
-       return str
+    if re.search( r'\\GraceContext', str):
+       error_file.write ('\n')
+       error_file.write (NOT_SMART % "GraceContext")
+       error_file.write (FROM_TO \
+                         % ("GraceContext", "#(add-to-grace-init .. )"))
+       error_file.write ('\n')
+       error_file.write (UPDATE_MANUALLY)
+       error_file.write ('\n')
+       raise FatalConversionError ()
+
+    str = re.sub ('HaraKiriStaffContext', 'RemoveEmptyStaffContext', str)
+    return str
 
 conversions.append (((1,7,19), conv,"remove GraceContext"))
 
@@ -1127,50 +1130,50 @@ conversions.append (((1,7,19), conv,"remove GraceContext"))
 
 
 def conv(str):
-       str = re.sub (
-               r"(set|override|revert) *#'type",
-               r"\1 #'style",
-               str)
-       return str
+    str = re.sub (
+           r"(set|override|revert) *#'type",
+           r"\1 #'style",
+           str)
+    return str
 
 conversions.append (((1,7,22), conv,"#'type -> #'style"))
 
 
 def conv(str):
-       str = re.sub (
-               "barNonAuto *= *##t",
-               "automaticBars = ##f",
-               str)
-       str = re.sub (
-               "barNonAuto *= *##f",
-               "automaticBars = ##t",
-               str)
-       return str
+    str = re.sub (
+           "barNonAuto *= *##t",
+           "automaticBars = ##f",
+           str)
+    str = re.sub (
+           "barNonAuto *= *##f",
+           "automaticBars = ##t",
+           str)
+    return str
 
 conversions.append (((1,7,23), conv,"barNonAuto -> automaticBars"))
 
 
 
 def conv(str):
-       if re.search( r'-(start|stop)Cluster', str):
-               error_file.write ('\n')
-               error_file.write (NOT_SMART % "Cluster syntax")
-               error_file.write ('\n')
-               error_file.write (UPDATE_MANUALLY)
-               error_file.write ('\n')
+    if re.search( r'-(start|stop)Cluster', str):
+       error_file.write ('\n')
+       error_file.write (NOT_SMART % "Cluster syntax")
+       error_file.write ('\n')
+       error_file.write (UPDATE_MANUALLY)
+       error_file.write ('\n')
 
-               raise FatalConversionError ()
+       raise FatalConversionError ()
 
-       return str
+    return str
 
 conversions.append (((1,7,24), conv,"cluster syntax"))
 
 
 def conv(str):
-       str = re.sub (r"\\property *Staff\.(Sustain|Sostenuto|UnaCorda)Pedal *\\(override|set) *#'pedal-type *",
-                       r"\property Staff.pedal\1Style ", str)
-       str = re.sub (r"\\property *Staff\.(Sustain|Sostenuto|UnaCorda)Pedal *\\revert *#'pedal-type", '', str)
-       return str
+    str = re.sub (r"\\property *Staff\.(Sustain|Sostenuto|UnaCorda)Pedal *\\(override|set) *#'pedal-type *",
+                   r"\property Staff.pedal\1Style ", str)
+    str = re.sub (r"\\property *Staff\.(Sustain|Sostenuto|UnaCorda)Pedal *\\revert *#'pedal-type", '', str)
+    return str
 
 conversions.append (((1,7,28), conv,"new Pedal style syntax"))
 
@@ -1179,159 +1182,159 @@ conversions.append (((1,7,28), conv,"new Pedal style syntax"))
 
 
 def sub_chord (m):
-       str = m.group(1)
+    str = m.group(1)
+
+    origstr =  '<%s>' % str
+    if re.search (r'\\\\', str):
+       return origstr
+
+    if re.search (r'\\property', str):
+       return origstr
+
+    if re.match (r'^\s*\)?\s*\\[a-zA-Z]+', str):
+       return origstr
+
+    durs = []
+    def sub_durs (m, durs = durs):
+       durs.append(m.group(2))
+       return m.group (1)
+
+    str = re.sub (r"([a-z]+[,'!? ]*)([0-9]+\.*)", sub_durs, str)
+    dur_str = ''
+
+    for d in durs:
+       if dur_str == '':
+           dur_str = d
+       if dur_str <> d:
+           return '<%s>' % m.group (1)
+
+    pslur_strs = ['']
+    dyns = ['']
+    slur_strs = ['']
+
+    last_str = ''
+    while last_str <> str:
+       last_str = str
+
+       def sub_tremolos (m, slur_strs = slur_strs):
+           tr = m.group (2)
+           if tr not in slur_strs:
+               slur_strs.append (tr)
+           return  m.group (1)
+
+       str = re.sub (r"([a-z]+[',!? ]*)(:[0-9]+)",
+                     sub_tremolos, str)
+
+       def sub_dyn_end (m, dyns = dyns):
+           dyns.append (' \!')
+           return ' ' + m.group(2)
+
+       str = re.sub (r'(\\!)\s*([a-z]+)', sub_dyn_end, str)
+       def sub_slurs(m, slur_strs = slur_strs):
+           if '-)' not in slur_strs:
+               slur_strs.append (')')
+           return m.group(1)
+
+       def sub_p_slurs(m, slur_strs = slur_strs):
+           if '-\)' not in slur_strs:
+               slur_strs.append ('\)')
+           return m.group(1)
+
+       str = re.sub (r"\)[ ]*([a-z]+)", sub_slurs, str)
+       str = re.sub (r"\\\)[ ]*([a-z]+)", sub_p_slurs, str)
+       def sub_begin_slurs(m, slur_strs = slur_strs):
+           if '-(' not in slur_strs:
+               slur_strs.append ('(')
+           return m.group(1)
+
+       str = re.sub (r"([a-z]+[,'!?0-9 ]*)\(",
+                     sub_begin_slurs, str)
+       def sub_begin_p_slurs(m, slur_strs = slur_strs):
+           if '-\(' not in slur_strs:
+               slur_strs.append ('\(')
+           return m.group(1)
+
+       str = re.sub (r"([a-z]+[,'!?0-9 ]*)\\\(",
+               sub_begin_p_slurs, str)
+
+       def sub_dyns (m, slur_strs = slur_strs):
+           s = m.group(0)
+           if s == '@STARTCRESC@':
+               slur_strs.append ("\\<")
+           elif s == '@STARTDECRESC@':
+               slur_strs.append ("\\>")
+           elif s == r'-?\\!':
+               slur_strs.append ('\\!')
+           return ''
+
+       str = re.sub (r'@STARTCRESC@', sub_dyns, str)
+       str = re.sub (r'-?\\!', sub_dyns, str)
+
+       def sub_articulations (m, slur_strs = slur_strs):
+           a = m.group(1)
+           if a not in slur_strs:
+               slur_strs.append (a)
+           return ''
+
+       str = re.sub (r"([_^-]\@ACCENT\@)", sub_articulations,
+                     str)
+       str = re.sub (r"([_^-]\\[a-z]+)", sub_articulations,
+                     str)
+       str = re.sub (r"([_^-][>_.+|^-])", sub_articulations,
+                     str)
+       str = re.sub (r'([_^-]"[^"]+")', sub_articulations,
+                     str)
 
-       origstr =  '<%s>' % str
-       if re.search (r'\\\\', str):
-               return origstr
-
-       if re.search (r'\\property', str):
-               return origstr
-
-       if re.match (r'^\s*\)?\s*\\[a-zA-Z]+', str):
-               return origstr
-
-       durs = []
-       def sub_durs (m, durs = durs):
-               durs.append(m.group(2))
-               return m.group (1)
-
-       str = re.sub (r"([a-z]+[,'!? ]*)([0-9]+\.*)", sub_durs, str)
-       dur_str = ''
-
-       for d in durs:
-               if dur_str == '':
-                       dur_str = d
-               if dur_str <> d:
-                       return '<%s>' % m.group (1)
-
-       pslur_strs = ['']
-       dyns = ['']
-       slur_strs = ['']
-
-       last_str = ''
-       while last_str <> str:
-               last_str = str
-
-               def sub_tremolos (m, slur_strs = slur_strs):
-                       tr = m.group (2)
-                       if tr not in slur_strs:
-                               slur_strs.append (tr)
-                       return  m.group (1)
-
-               str = re.sub (r"([a-z]+[',!? ]*)(:[0-9]+)",
-                             sub_tremolos, str)
-
-               def sub_dyn_end (m, dyns = dyns):
-                       dyns.append (' \!')
-                       return ' ' + m.group(2)
-
-               str = re.sub (r'(\\!)\s*([a-z]+)', sub_dyn_end, str)
-               def sub_slurs(m, slur_strs = slur_strs):
-                       if '-)' not in slur_strs:
-                               slur_strs.append (')')
-                       return m.group(1)
-
-               def sub_p_slurs(m, slur_strs = slur_strs):
-                       if '-\)' not in slur_strs:
-                               slur_strs.append ('\)')
-                       return m.group(1)
-
-               str = re.sub (r"\)[ ]*([a-z]+)", sub_slurs, str)
-               str = re.sub (r"\\\)[ ]*([a-z]+)", sub_p_slurs, str)
-               def sub_begin_slurs(m, slur_strs = slur_strs):
-                       if '-(' not in slur_strs:
-                               slur_strs.append ('(')
-                       return m.group(1)
-
-               str = re.sub (r"([a-z]+[,'!?0-9 ]*)\(",
-                             sub_begin_slurs, str)
-               def sub_begin_p_slurs(m, slur_strs = slur_strs):
-                       if '-\(' not in slur_strs:
-                               slur_strs.append ('\(')
-                       return m.group(1)
-
-               str = re.sub (r"([a-z]+[,'!?0-9 ]*)\\\(",
-                       sub_begin_p_slurs, str)
-
-               def sub_dyns (m, slur_strs = slur_strs):
-                       s = m.group(0)
-                       if s == '@STARTCRESC@':
-                               slur_strs.append ("\\<")
-                       elif s == '@STARTDECRESC@':
-                               slur_strs.append ("\\>")
-                       elif s == r'-?\\!':
-                               slur_strs.append ('\\!')
-                       return ''
-
-               str = re.sub (r'@STARTCRESC@', sub_dyns, str)
-               str = re.sub (r'-?\\!', sub_dyns, str)
-
-               def sub_articulations (m, slur_strs = slur_strs):
-                       a = m.group(1)
-                       if a not in slur_strs:
-                               slur_strs.append (a)
-                       return ''
-
-               str = re.sub (r"([_^-]\@ACCENT\@)", sub_articulations,
-                             str)
-               str = re.sub (r"([_^-]\\[a-z]+)", sub_articulations,
-                             str)
-               str = re.sub (r"([_^-][>_.+|^-])", sub_articulations,
-                             str)
-               str = re.sub (r'([_^-]"[^"]+")', sub_articulations,
-                             str)
-
-               def sub_pslurs(m, slur_strs = slur_strs):
-                       slur_strs.append (' \\)')
-                       return m.group(1)
-               str = re.sub (r"\\\)[ ]*([a-z]+)", sub_pslurs, str)
-
-       ## end of while <>
-
-       suffix = string.join (slur_strs, '') + string.join (pslur_strs,
-                                                           '') \
-                + string.join (dyns, '')
-
-       return '@STARTCHORD@%s@ENDCHORD@%s%s' % (str , dur_str, suffix)
+       def sub_pslurs(m, slur_strs = slur_strs):
+           slur_strs.append (' \\)')
+           return m.group(1)
+       str = re.sub (r"\\\)[ ]*([a-z]+)", sub_pslurs, str)
+
+    ## end of while <>
+
+    suffix = string.join (slur_strs, '') + string.join (pslur_strs,
+                                                       '') \
+            + string.join (dyns, '')
+
+    return '@STARTCHORD@%s@ENDCHORD@%s%s' % (str , dur_str, suffix)
 
 
 
 def sub_chords (str):
-       simend = '>'
-       simstart = '<'
-       chordstart = '<<'
-       chordend = '>>'
-       marker_str = '%% new-chords-done %%'
-
-       if re.search (marker_str,str):
-               return str
-       str = re.sub ('<<', '@STARTCHORD@', str)
-       str = re.sub ('>>', '@ENDCHORD@', str)
-
-       str = re.sub (r'\\<', '@STARTCRESC@', str)
-       str = re.sub (r'\\>', '@STARTDECRESC@', str)
-       str = re.sub (r'([_^-])>', r'\1@ACCENT@', str)
-       str = re.sub (r'<([^<>{}]+)>', sub_chord, str)
-
-       # add dash: -[, so that [<<a b>> c d] becomes
-       #                      <<a b>>-[ c d]
-       # and gets skipped by articulation_substitute
-       str = re.sub (r'\[ *(@STARTCHORD@[^@]+@ENDCHORD@[0-9.]*)',
-                     r'\1-[', str)
-       str = re.sub (r'\\! *(@STARTCHORD@[^@]+@ENDCHORD@[0-9.]*)',
-                     r'\1-\\!', str)
-
-       str = re.sub (r'<([^?])', r'%s\1' % simstart, str)
-       str = re.sub (r'>([^?])', r'%s\1' % simend,  str)
-       str = re.sub ('@STARTCRESC@', r'\\<', str)
-       str = re.sub ('@STARTDECRESC@', r'\\>' ,str)
-       str = re.sub (r'\\context *Voice *@STARTCHORD@',
-                     '@STARTCHORD@', str)
-       str = re.sub ('@STARTCHORD@', chordstart, str)
-       str = re.sub ('@ENDCHORD@', chordend, str)
-       str = re.sub (r'@ACCENT@', '>', str)
-       return str
+    simend = '>'
+    simstart = '<'
+    chordstart = '<<'
+    chordend = '>>'
+    marker_str = '%% new-chords-done %%'
+
+    if re.search (marker_str,str):
+       return str
+    str = re.sub ('<<', '@STARTCHORD@', str)
+    str = re.sub ('>>', '@ENDCHORD@', str)
+
+    str = re.sub (r'\\<', '@STARTCRESC@', str)
+    str = re.sub (r'\\>', '@STARTDECRESC@', str)
+    str = re.sub (r'([_^-])>', r'\1@ACCENT@', str)
+    str = re.sub (r'<([^<>{}]+)>', sub_chord, str)
+
+    # add dash: -[, so that [<<a b>> c d] becomes
+    #                      <<a b>>-[ c d]
+    # and gets skipped by articulation_substitute
+    str = re.sub (r'\[ *(@STARTCHORD@[^@]+@ENDCHORD@[0-9.]*)',
+                 r'\1-[', str)
+    str = re.sub (r'\\! *(@STARTCHORD@[^@]+@ENDCHORD@[0-9.]*)',
+                 r'\1-\\!', str)
+
+    str = re.sub (r'<([^?])', r'%s\1' % simstart, str)
+    str = re.sub (r'>([^?])', r'%s\1' % simend,  str)
+    str = re.sub ('@STARTCRESC@', r'\\<', str)
+    str = re.sub ('@STARTDECRESC@', r'\\>' ,str)
+    str = re.sub (r'\\context *Voice *@STARTCHORD@',
+                 '@STARTCHORD@', str)
+    str = re.sub ('@STARTCHORD@', chordstart, str)
+    str = re.sub ('@ENDCHORD@', chordend, str)
+    str = re.sub (r'@ACCENT@', '>', str)
+    return str
 
 markup_start = re.compile(r"([-^_]|\\mark)\s*(#\s*'\s*)\(")
 musicglyph = re.compile(r"\(\s*music\b")
@@ -1341,385 +1344,385 @@ leftpar = re.compile(r"\(")
 rightpar = re.compile(r"\)")
 
 def text_markup (str):
-       result = ''
-       # Find the beginning of each markup:
-       match = markup_start.search (str)
-       while match:
-               result = result + str[:match.end (1)] + " \markup"
-               str = str[match.end( 2):]
-               # Count matching parentheses to find the end of the 
-               # current markup:
-               nesting_level = 0
-               pars = re.finditer(r"[()]",str)
-               for par in pars:
-                       if par.group () == '(':
-                               nesting_level = nesting_level + 1
-                       else:
-                               nesting_level = nesting_level - 1
-                       if nesting_level == 0:
-                               markup_end = par.end ()
-                               break
-               # The full markup in old syntax:
-               markup = str[:markup_end]
-               # Modify to new syntax:
-               markup = musicglyph.sub (r"{\\musicglyph", markup)
-               markup = columns.sub (r"{", markup)
-               markup = submarkup_start.sub (r"{\\\1", markup)
-               markup = leftpar.sub ("{", markup)
-               markup = rightpar.sub ("}", markup)
-
-               result = result + markup
-               # Find next markup
-               str = str[markup_end:]
-               match = markup_start.search(str)
-       result = result + str
-       return result
+    result = ''
+    # Find the beginning of each markup:
+    match = markup_start.search (str)
+    while match:
+       result = result + str[:match.end (1)] + " \markup"
+       str = str[match.end( 2):]
+       # Count matching parentheses to find the end of the 
+       # current markup:
+       nesting_level = 0
+       pars = re.finditer(r"[()]",str)
+       for par in pars:
+           if par.group () == '(':
+               nesting_level = nesting_level + 1
+           else:
+               nesting_level = nesting_level - 1
+           if nesting_level == 0:
+               markup_end = par.end ()
+               break
+       # The full markup in old syntax:
+       markup = str[:markup_end]
+       # Modify to new syntax:
+       markup = musicglyph.sub (r"{\\musicglyph", markup)
+       markup = columns.sub (r"{", markup)
+       markup = submarkup_start.sub (r"{\\\1", markup)
+       markup = leftpar.sub ("{", markup)
+       markup = rightpar.sub ("}", markup)
+
+       result = result + markup
+       # Find next markup
+       str = str[markup_end:]
+       match = markup_start.search(str)
+    result = result + str
+    return result
 
 def articulation_substitute (str):
-       str = re.sub (r"""([^-])\[ *(\\?\)?[a-z]+[,']*[!?]?[0-9:]*\.*)""",
-                     r"\1 \2[", str)
-       str = re.sub (r"""([^-])\\\) *([a-z]+[,']*[!?]?[0-9:]*\.*)""",
-                     r"\1 \2\\)", str)
-       str = re.sub (r"""([^-\\])\) *([a-z]+[,']*[!?]?[0-9:]*\.*)""",
-                     r"\1 \2)", str)
-       str = re.sub (r"""([^-])\\! *([a-z]+[,']*[!?]?[0-9:]*\.*)""",
-                     r"\1 \2\\!", str)
-       return str
+    str = re.sub (r"""([^-])\[ *(\\?\)?[a-z]+[,']*[!?]?[0-9:]*\.*)""",
+                 r"\1 \2[", str)
+    str = re.sub (r"""([^-])\\\) *([a-z]+[,']*[!?]?[0-9:]*\.*)""",
+                 r"\1 \2\\)", str)
+    str = re.sub (r"""([^-\\])\) *([a-z]+[,']*[!?]?[0-9:]*\.*)""",
+                 r"\1 \2)", str)
+    str = re.sub (r"""([^-])\\! *([a-z]+[,']*[!?]?[0-9:]*\.*)""",
+                 r"\1 \2\\!", str)
+    return str
 
 string_or_scheme = re.compile ('("(?:[^"\\\\]|\\\\.)*")|(#\\s*\'?\\s*\\()')
 
 # Only apply articulation_substitute () outside strings and 
 # Scheme expressions:
 def smarter_articulation_subst (str):
-       result = ''
-       # Find the beginning of next string or Scheme expr.:
+    result = ''
+    # Find the beginning of next string or Scheme expr.:
+    match = string_or_scheme.search (str)
+    while match:
+       # Convert the preceding LilyPond code:
+       previous_chunk = str[:match.start()]
+       result = result + articulation_substitute (previous_chunk)
+       if match.group (1): # Found a string
+           # Copy the string to output:
+           result = result + match.group (1)
+           str = str[match.end(1):]
+       else: # Found a Scheme expression. Count 
+           # matching parentheses to find its end
+           str = str[match.start ():]
+           nesting_level = 0
+           pars = re.finditer(r"[()]",str)
+           for par in pars:
+               if par.group () == '(':
+                   nesting_level = nesting_level + 1
+               else:
+                   nesting_level = nesting_level - 1
+               if nesting_level == 0:
+                   scheme_end = par.end ()
+                   break
+           # Copy the Scheme expression to output:
+           result = result + str[:scheme_end]
+           str = str[scheme_end:]
+       # Find next string or Scheme expression:
        match = string_or_scheme.search (str)
-       while match:
-               # Convert the preceding LilyPond code:
-               previous_chunk = str[:match.start()]
-               result = result + articulation_substitute (previous_chunk)
-               if match.group (1): # Found a string
-                       # Copy the string to output:
-                       result = result + match.group (1)
-                       str = str[match.end(1):]
-               else: # Found a Scheme expression. Count 
-                       # matching parentheses to find its end
-                       str = str[match.start ():]
-                       nesting_level = 0
-                       pars = re.finditer(r"[()]",str)
-                       for par in pars:
-                               if par.group () == '(':
-                                       nesting_level = nesting_level + 1
-                               else:
-                                       nesting_level = nesting_level - 1
-                               if nesting_level == 0:
-                                       scheme_end = par.end ()
-                                       break
-                       # Copy the Scheme expression to output:
-                       result = result + str[:scheme_end]
-                       str = str[scheme_end:]
-               # Find next string or Scheme expression:
-               match = string_or_scheme.search (str)
-       # Convert the remainder of the file
-       result = result + articulation_substitute (str)
-       return result
+    # Convert the remainder of the file
+    result = result + articulation_substitute (str)
+    return result
 
 def conv_relative(str):
-       if re.search (r"\\relative", str):
-               str= "#(ly:set-option 'old-relative)\n" + str
+    if re.search (r"\\relative", str):
+       str= "#(ly:set-option 'old-relative)\n" + str
 
-       return str
+    return str
 
 def conv (str):
-       str = re.sub (r"#'\(\)", "@SCM_EOL@", str)
-       str =  conv_relative (str)
-       str = sub_chords (str)
+    str = re.sub (r"#'\(\)", "@SCM_EOL@", str)
+    str =  conv_relative (str)
+    str = sub_chords (str)
 
-       str = text_markup (str)
-       str = smarter_articulation_subst (str)
-       str = re.sub ("@SCM_EOL@", "#'()", str)
+    str = text_markup (str)
+    str = smarter_articulation_subst (str)
+    str = re.sub ("@SCM_EOL@", "#'()", str)
 
-       return str
+    return str
 
 conversions.append (((1,9,0), conv, """New relative mode,
 Postfix articulations, new text markup syntax, new chord syntax."""))
 
 
 def conv (str):
-       if re.search ("font-style",str):
-               error_file.write ('\n')
-               error_file.write (NOT_SMART % "font-style")
-               error_file.write ('\n')
-               error_file.write (UPDATE_MANUALLY)
-               error_file.write ('\n')
+    if re.search ("font-style",str):
+       error_file.write ('\n')
+       error_file.write (NOT_SMART % "font-style")
+       error_file.write ('\n')
+       error_file.write (UPDATE_MANUALLY)
+       error_file.write ('\n')
 
-               raise FatalConversionError ()
+       raise FatalConversionError ()
 
-       str = re.sub (r'-\\markup', r'@\\markup', str)
-       str = re.sub (r'-\\', r'\\', str)
-       str = re.sub (r'-\)', ')', str)
-       str = re.sub (r'-\(', '(', str)
-       str = re.sub ('-\[', '[', str)
-       str = re.sub ('-\]', ']', str)
-       str = re.sub ('-~', '~', str)
-       str = re.sub (r'@\\markup', r'-\\markup', str)
-       return str
+    str = re.sub (r'-\\markup', r'@\\markup', str)
+    str = re.sub (r'-\\', r'\\', str)
+    str = re.sub (r'-\)', ')', str)
+    str = re.sub (r'-\(', '(', str)
+    str = re.sub ('-\[', '[', str)
+    str = re.sub ('-\]', ']', str)
+    str = re.sub ('-~', '~', str)
+    str = re.sub (r'@\\markup', r'-\\markup', str)
+    return str
 
 conversions.append (((1,9,1), conv, """Remove - before articulation"""))
 
 def conv (str):
-       str = re.sub ('ly:set-context-property',
-                     'ly:set-context-property!', str)
-       str = re.sub ('\\\\newcontext', '\\\\new', str)
-       str = re.sub ('\\\\grace[\t\n ]*([^{ ]+)',
-                     r'\\grace { \1 }', str)
-       str = re.sub ("\\\\grace[\t\n ]*{([^}]+)}",
-                     r"""\\grace {
+    str = re.sub ('ly:set-context-property',
+                 'ly:set-context-property!', str)
+    str = re.sub ('\\\\newcontext', '\\\\new', str)
+    str = re.sub ('\\\\grace[\t\n ]*([^{ ]+)',
+                 r'\\grace { \1 }', str)
+    str = re.sub ("\\\\grace[\t\n ]*{([^}]+)}",
+                 r"""\\grace {
 \\property Voice.Stem \\override #'stroke-style = #"grace"
   \1
   \\property Voice.Stem \\revert #'stroke-style }
 """, str)
 
-       return str
+    return str
 
 conversions.append (((1,9,2), conv, """\\newcontext -> \\new"""))
 
 def conv (str):
-       str = re.sub ('accacciatura',
-                     'acciaccatura', str)
+    str = re.sub ('accacciatura',
+                 'acciaccatura', str)
 
-       if re.search ("context-spec-music", str):
-               error_file.write ('\n')
-               error_file.write (NOT_SMART % "context-spec-music")
-               error_file.write ('\n')
-               error_file.write (UPDATE_MANUALLY)
-               error_file.write ('\n')
+    if re.search ("context-spec-music", str):
+       error_file.write ('\n')
+       error_file.write (NOT_SMART % "context-spec-music")
+       error_file.write ('\n')
+       error_file.write (UPDATE_MANUALLY)
+       error_file.write ('\n')
 
-               raise FatalConversionError ()
+       raise FatalConversionError ()
 
-       str = re.sub ('fingerHorizontalDirection *= *#(LEFT|-1)',
-                     "fingeringOrientations = #'(up down left)", str)
-       str = re.sub ('fingerHorizontalDirection *= *#(RIGHT|1)',
-                     "fingeringOrientations = #'(up down right)", str)
+    str = re.sub ('fingerHorizontalDirection *= *#(LEFT|-1)',
+                 "fingeringOrientations = #'(up down left)", str)
+    str = re.sub ('fingerHorizontalDirection *= *#(RIGHT|1)',
+                 "fingeringOrientations = #'(up down right)", str)
 
-       return str
+    return str
 
 conversions.append (((1,9,3), conv,
                     """\\acciaccatura misspelling, fingerHorizontalDirection -> fingeringOrientations"""))
 
 
 def conv (str):
-       if re.search ('\\figures', str):
-               error_file.write ("Warning: attempting automatic \\figures conversion.  Check results!");
+    if re.search ('\\figures', str):
+       error_file.write ("Warning: attempting automatic \\figures conversion.  Check results!");
 
 
-       def figures_replace (m):
-               s = m.group (1)
-               s = re.sub ('<', '@FIGOPEN@',s)
-               s = re.sub ('>', '@FIGCLOSE@',s)
-               return '\\figures { %s }' % s
+    def figures_replace (m):
+       s = m.group (1)
+       s = re.sub ('<', '@FIGOPEN@',s)
+       s = re.sub ('>', '@FIGCLOSE@',s)
+       return '\\figures { %s }' % s
 
-       str = re.sub (r'\\figures[ \t\n]*{([^}]+)}', figures_replace, str)
-       str = re.sub (r'\\<', '@STARTCRESC@', str)
-       str = re.sub (r'\\>', '@STARTDECRESC@', str)
-       str = re.sub (r'([-^_])>', r'\1@ACCENT@', str)
-       str = re.sub (r'<<', '@STARTCHORD@', str)
-       str = re.sub (r'>>', '@ENDCHORD@', str)
-       str = re.sub (r'>', '@ENDSIMUL@', str)
-       str = re.sub (r'<', '@STARTSIMUL@', str)
-       str = re.sub ('@STARTDECRESC@', '\\>', str)
-       str = re.sub ('@STARTCRESC@', '\\<', str)
-       str = re.sub ('@ACCENT@', '>', str)
-       str = re.sub ('@ENDCHORD@', '>', str)
-       str = re.sub ('@STARTCHORD@', '<', str)
-       str = re.sub ('@STARTSIMUL@', '<<', str)
-       str = re.sub ('@ENDSIMUL@', '>>', str)
-       str = re.sub ('@FIGOPEN@', '<', str)
-       str = re.sub ('@FIGCLOSE@', '>', str)
+    str = re.sub (r'\\figures[ \t\n]*{([^}]+)}', figures_replace, str)
+    str = re.sub (r'\\<', '@STARTCRESC@', str)
+    str = re.sub (r'\\>', '@STARTDECRESC@', str)
+    str = re.sub (r'([-^_])>', r'\1@ACCENT@', str)
+    str = re.sub (r'<<', '@STARTCHORD@', str)
+    str = re.sub (r'>>', '@ENDCHORD@', str)
+    str = re.sub (r'>', '@ENDSIMUL@', str)
+    str = re.sub (r'<', '@STARTSIMUL@', str)
+    str = re.sub ('@STARTDECRESC@', '\\>', str)
+    str = re.sub ('@STARTCRESC@', '\\<', str)
+    str = re.sub ('@ACCENT@', '>', str)
+    str = re.sub ('@ENDCHORD@', '>', str)
+    str = re.sub ('@STARTCHORD@', '<', str)
+    str = re.sub ('@STARTSIMUL@', '<<', str)
+    str = re.sub ('@ENDSIMUL@', '>>', str)
+    str = re.sub ('@FIGOPEN@', '<', str)
+    str = re.sub ('@FIGCLOSE@', '>', str)
 
-       return str
+    return str
 
 conversions.append (((1,9,4), conv, 'Swap < > and << >>'))
 
 
 def conv (str):
-       str = re.sub ('HaraKiriVerticalGroup', 'RemoveEmptyVerticalGroup', str)
+    str = re.sub ('HaraKiriVerticalGroup', 'RemoveEmptyVerticalGroup', str)
 
-       return str
+    return str
 
 conversions.append (((1,9,5), conv, 'HaraKiriVerticalGroup -> RemoveEmptyVerticalGroup'))
 
 def conv (str):
-       if re.search ("ly:get-font", str) :
-               error_file.write ('\n')
-               error_file.write (NOT_SMART % "(ly:-get-font")
-               error_file.write ('\n')
-               error_file.write (FROM_TO \
-                                 % ("(ly:paper-get-font (ly:grob-get-paper foo) .. )",
-                                    "(ly:paper-get-font (ly:grob-get-paper foo) .. )"))
-               error_file.write (UPDATE_MANUALLY)
-               error_file.write ('\n')
-               raise FatalConversionError ()
+    if re.search ("ly:get-font", str) :
+       error_file.write ('\n')
+       error_file.write (NOT_SMART % "(ly:-get-font")
+       error_file.write ('\n')
+       error_file.write (FROM_TO \
+                         % ("(ly:paper-get-font (ly:grob-get-paper foo) .. )",
+                            "(ly:paper-get-font (ly:grob-get-paper foo) .. )"))
+       error_file.write (UPDATE_MANUALLY)
+       error_file.write ('\n')
+       raise FatalConversionError ()
 
-       if re.search ("\\pitch *#", str) :
-               error_file.write ('\n')
-               error_file.write (NOT_SMART % "\\pitch")
-               error_file.write ('\n')
-               error_file.write ("Use Scheme code to construct arbitrary note events.")
-               error_file.write ('\n')
+    if re.search ("\\pitch *#", str) :
+       error_file.write ('\n')
+       error_file.write (NOT_SMART % "\\pitch")
+       error_file.write ('\n')
+       error_file.write ("Use Scheme code to construct arbitrary note events.")
+       error_file.write ('\n')
 
-               raise FatalConversionError ()
+       raise FatalConversionError ()
 
-       return str
+    return str
 
 
 conversions.append (((1,9,6), conv, 'ly:get-font deprecated.'))
 
 def conv (str):
-       def sub_alteration (m):
-               alt = m.group (3)
-               alt = {
-                       '-1': 'FLAT',
-                       '-2': 'DOUBLE-FLAT',
-                       '0': 'NATURAL',
-                       '1': 'SHARP',
-                       '2': 'DOUBLE-SHARP',
-                       }[alt]
+    def sub_alteration (m):
+       alt = m.group (3)
+       alt = {
+               '-1': 'FLAT',
+               '-2': 'DOUBLE-FLAT',
+               '0': 'NATURAL',
+               '1': 'SHARP',
+               '2': 'DOUBLE-SHARP',
+               }[alt]
 
-               return '(ly:make-pitch %s %s %s)' % (m.group(1), m.group (2),
-                                                    alt)
+       return '(ly:make-pitch %s %s %s)' % (m.group(1), m.group (2),
+                                            alt)
 
-       str =re.sub ("\\(ly:make-pitch *([0-9-]+) *([0-9-]+) *([0-9-]+) *\\)",
-                    sub_alteration, str)
+    str =re.sub ("\\(ly:make-pitch *([0-9-]+) *([0-9-]+) *([0-9-]+) *\\)",
+                sub_alteration, str)
 
 
-       str = re.sub ("ly:verbose", "ly:get-option 'verbose", str)
+    str = re.sub ("ly:verbose", "ly:get-option 'verbose", str)
 
-       m= re.search ("\\\\outputproperty #([^#]+)[\t\n ]*#'([^ ]+)", str)
-       if m:
-               error_file.write (\
-                       r"""\outputproperty found,
+    m= re.search ("\\\\outputproperty #([^#]+)[\t\n ]*#'([^ ]+)", str)
+    if m:
+       error_file.write (\
+               r"""\outputproperty found,
 Please hand-edit, using
 
   \applyoutput #(outputproperty-compatibility %s '%s <GROB PROPERTY VALUE>)
 
 as a substitution text.""" % (m.group (1), m.group (2)) )
-               raise FatalConversionError ()
-
-       if re.search ("ly:(make-pitch|pitch-alteration)", str) \
-              or re.search ("keySignature", str):
-               error_file.write ('\n')
-               error_file.write (NOT_SMART % "pitches")
-               error_file.write ('\n')
-               error_file.write (
-"""The alteration field of Scheme pitches was multiplied by 2
+       raise FatalConversionError ()
+
+    if re.search ("ly:(make-pitch|pitch-alteration)", str) \
+          or re.search ("keySignature", str):
+       error_file.write ('\n')
+       error_file.write (NOT_SMART % "pitches")
+       error_file.write ('\n')
+       error_file.write (
+           """The alteration field of Scheme pitches was multiplied by 2
 to support quarter tone accidentals.  You must update the following constructs by manually:
 
 * calls of ly:make-pitch and ly:pitch-alteration
 * keySignature settings made with \property
 """)
-               raise FatalConversionError ()
+       raise FatalConversionError ()
 
-       return str
+    return str
 conversions.append (((1,9,7), conv,
                     '''use symbolic constants for alterations,
 remove \\outputproperty, move ly:verbose into ly:get-option'''))
 
 
 def conv (str):
-       if re.search ("dash-length",str):
-               error_file.write ('\n')
-               error_file.write (NOT_SMART % "dash-length")
-               error_file.write ('\n')
-               error_file.write (FROM_TO % ("dash-length", "dash-fraction"))
-               error_file.write ('\n')
-               error_file.write (UPDATE_MANUALLY)
-               error_file.write ('\n')
-               raise FatalConversionError ()
-       return str
+    if re.search ("dash-length",str):
+       error_file.write ('\n')
+       error_file.write (NOT_SMART % "dash-length")
+       error_file.write ('\n')
+       error_file.write (FROM_TO % ("dash-length", "dash-fraction"))
+       error_file.write ('\n')
+       error_file.write (UPDATE_MANUALLY)
+       error_file.write ('\n')
+       raise FatalConversionError ()
+    return str
 
 conversions.append (((1,9,8), conv, """dash-length -> dash-fraction"""))
 
 
 def conv (str):
-       def func(match):
-               return "#'font-size = #%d" % (2*string.atoi (match.group (1)))
+    def func(match):
+       return "#'font-size = #%d" % (2*string.atoi (match.group (1)))
 
-       str =re.sub (r"#'font-relative-size\s*=\s*#\+?([0-9-]+)", func, str)
-       str =re.sub (r"#'font-family\s*=\s*#'ancient",
-                    r"#'font-family = #'music", str)
+    str =re.sub (r"#'font-relative-size\s*=\s*#\+?([0-9-]+)", func, str)
+    str =re.sub (r"#'font-family\s*=\s*#'ancient",
+                r"#'font-family = #'music", str)
 
-       return str
+    return str
 
 conversions.append (((2,1,1), conv, """font-relative-size -> font-size"""))
 
 def conv (str):
-       str =re.sub (r"ly:get-music-length", "ly:music-length", str)
-       return str
+    str =re.sub (r"ly:get-music-length", "ly:music-length", str)
+    return str
 
 conversions.append (((2,1,2), conv, """ly:get-music-length -> ly:music-length"""))
 
 def conv (str):
-       str =re.sub (r"\.\s+stz=", ". instr ", str)
-       return str
+    str =re.sub (r"\.\s+stz=", ". instr ", str)
+    return str
 
 conversions.append (((2,1,3), conv, """stanza -> instrument"""))
 
 def conv (str):
-       def func (match):
-               c = match.group (1)
-               b = match.group (2)
+    def func (match):
+       c = match.group (1)
+       b = match.group (2)
 
-               if b == 't':
-                       if c == 'Score':
-                               return ''
-                       else:
-                               return r" \property %s.melismaBusyProperties \unset"  % c
-               elif b == 'f':
-                       return r"\property %s.melismaBusyProperties = #'(melismaBusy)"  % c
+       if b == 't':
+           if c == 'Score':
+               return ''
+           else:
+               return r" \property %s.melismaBusyProperties \unset"  % c
+       elif b == 'f':
+           return r"\property %s.melismaBusyProperties = #'(melismaBusy)"  % c
 
-       str = re.sub (r"\\property ([a-zA-Z]+)\s*\.\s*automaticMelismata\s*=\s*##([ft])", func, str)
-       return str
+    str = re.sub (r"\\property ([a-zA-Z]+)\s*\.\s*automaticMelismata\s*=\s*##([ft])", func, str)
+    return str
 
 conversions.append (((2,1,4), conv, """removal of automaticMelismata; use melismaBusyProperties instead."""))
 
 
 
 def conv (str):
-       str =re.sub (r"\\translator\s+([a-zA-Z]+)", r"\\change \1", str)
-       return str
+    str =re.sub (r"\\translator\s+([a-zA-Z]+)", r"\\change \1", str)
+    return str
 
 conversions.append (((2,1,7), conv, """\\translator Staff -> \\change Staff"""))
 
 def conv (str):
-       str =re.sub (r"\\newaddlyrics", r"\\lyricsto", str)
-       return str
+    str =re.sub (r"\\newaddlyrics", r"\\lyricsto", str)
+    return str
 
 conversions.append (((2,1,10), conv, """\\newaddlyrics -> \\lyricsto"""))
 
 def conv (str):
-       str = re.sub (r'\\include\s*"paper([0-9]+)(-init)?.ly"',
-                     r"#(set-staff-size \1)", str)
+    str = re.sub (r'\\include\s*"paper([0-9]+)(-init)?.ly"',
+                 r"#(set-staff-size \1)", str)
 
-       def sub_note (match):
-               dur = ''
-               log = string.atoi (match.group (1))
-               dots = string.atoi (match.group (2))
+    def sub_note (match):
+       dur = ''
+       log = string.atoi (match.group (1))
+       dots = string.atoi (match.group (2))
 
-               if log >= 0:
-                       dur = '%d' % (1 << log)
-               else:
-                       dur = { -1 : 'breve',
-                               -2 : 'longa',
-                               -3 : 'maxima'}[log]
+       if log >= 0:
+           dur = '%d' % (1 << log)
+       else:
+           dur = { -1 : 'breve',
+                   -2 : 'longa',
+                   -3 : 'maxima'}[log]
 
-               dur += ('.' * dots)
+       dur += ('.' * dots)
 
-               return r'\note #"%s" #%s' % (dur, match.group (3))
+       return r'\note #"%s" #%s' % (dur, match.group (3))
 
-       str = re.sub (r'\\note\s+#([0-9-]+)\s+#([0-9]+)\s+#([0-9.-]+)',
-                     sub_note, str)
-       return str
+    str = re.sub (r'\\note\s+#([0-9-]+)\s+#([0-9]+)\s+#([0-9.-]+)',
+                 sub_note, str)
+    return str
 
 conversions.append (((2,1,11), conv, """\\include "paper16.ly" -> #(set-staff-size 16)
 \\note #3 #1 #1 -> \\note #"8." #1
@@ -1727,82 +1730,82 @@ conversions.append (((2,1,11), conv, """\\include "paper16.ly" -> #(set-staff-si
 
 
 def conv (str):
-       str =re.sub (r"OttavaSpanner", r"OttavaBracket", str)
-       return str
+    str =re.sub (r"OttavaSpanner", r"OttavaBracket", str)
+    return str
 
 conversions.append (((2,1,12), conv, """OttavaSpanner -> OttavaBracket"""))
 
 
 def conv (str):
-       str =re.sub (r"\(set-staff-size ", r"(set-global-staff-size ", str)
-       return str
+    str =re.sub (r"\(set-staff-size ", r"(set-global-staff-size ", str)
+    return str
 
 conversions.append (((2,1,13), conv, """set-staff-size -> set-global-staff-size"""))
 
 def conv (str):
-       str =re.sub (r"#'style\s*=\s*#'dotted-line",
-                    r"#'dash-fraction = #0.0 ", str)
-       return str
+    str =re.sub (r"#'style\s*=\s*#'dotted-line",
+                r"#'dash-fraction = #0.0 ", str)
+    return str
 
 conversions.append (((2,1,14), conv, """style = dotted -> dash-fraction = 0"""))
 
 def conv (str):
-       str =re.sub (r'LyricsVoice\s*\.\s*instrument\s*=\s*("[^"]*")',
-                    r'LyricsVoice . vocalName = \1', str)
+    str =re.sub (r'LyricsVoice\s*\.\s*instrument\s*=\s*("[^"]*")',
+                r'LyricsVoice . vocalName = \1', str)
 
-       str =re.sub (r'LyricsVoice\s*\.\s*instr\s*=\s*("[^"]*")',
-                    r'LyricsVoice . vocNam = \1', str)
-       return str
+    str =re.sub (r'LyricsVoice\s*\.\s*instr\s*=\s*("[^"]*")',
+                r'LyricsVoice . vocNam = \1', str)
+    return str
 
 conversions.append (((2,1,15), conv, """LyricsVoice . instr(ument) -> vocalName"""))
 
 def conv (str):
-       def sub_acc (m):
-               d = {
-               '4': 'doublesharp',
-               '3': 'threeqsharp',
-               '2': 'sharp',
-               '1': 'semisharp',
-               '0': 'natural',
-               '-1': 'semiflat',
-               '-2': 'flat',
-               '-3': 'threeqflat',
-               '-4': 'doubleflat'}
-               return '\\%s' %  d[m.group (1)]
-
-       str = re.sub (r'\\musicglyph\s*#"accidentals-([0-9-]+)"',
-                     sub_acc, str)
-       return str
+    def sub_acc (m):
+       d = {
+       '4': 'doublesharp',
+       '3': 'threeqsharp',
+       '2': 'sharp',
+       '1': 'semisharp',
+       '0': 'natural',
+       '-1': 'semiflat',
+       '-2': 'flat',
+       '-3': 'threeqflat',
+       '-4': 'doubleflat'}
+       return '\\%s' %  d[m.group (1)]
+
+    str = re.sub (r'\\musicglyph\s*#"accidentals-([0-9-]+)"',
+                 sub_acc, str)
+    return str
 
 conversions.append (((2,1,16), conv, """\\musicglyph #"accidentals-NUM" -> \\sharp/flat/etc."""))
 
 
 def conv (str):
 
-       if re.search (r'\\partcombine', str):
-               error_file.write ('\n')
-               error_file.write (NOT_SMART % "\\partcombine")
-               error_file.write ('\n')
-               error_file.write (UPDATE_MANUALLY)
-               error_file.write ('\n')
-               raise FatalConversionError ()
+    if re.search (r'\\partcombine', str):
+       error_file.write ('\n')
+       error_file.write (NOT_SMART % "\\partcombine")
+       error_file.write ('\n')
+       error_file.write (UPDATE_MANUALLY)
+       error_file.write ('\n')
+       raise FatalConversionError ()
 
-       # this rule doesn't really work,
-       # too lazy to figure out why.
-       str = re.sub (r'\\context\s+Voice\s*=\s*one\s*\\partcombine\s+Voice\s*\\context\s+Thread\s*=\s*one(.*)\s*'
-                     + r'\\context\s+Thread\s*=\s*two',
-                     '\\\\newpartcombine\n\\1\n', str)
+    # this rule doesn't really work,
+    # too lazy to figure out why.
+    str = re.sub (r'\\context\s+Voice\s*=\s*one\s*\\partcombine\s+Voice\s*\\context\s+Thread\s*=\s*one(.*)\s*'
+                 + r'\\context\s+Thread\s*=\s*two',
+                 '\\\\newpartcombine\n\\1\n', str)
 
 
-       return str
+    return str
 
 conversions.append (((2,1,17), conv, """\\partcombine syntax change to \\newpartcombine"""))
 
 
 def conv (str):
-       str = re.sub (r'\\newpartcombine', r'\\partcombine', str)
-       str = re.sub (r'\\autochange\s+Staff', r'\\autochange ', str)
-       return str
+    str = re.sub (r'\\newpartcombine', r'\\partcombine', str)
+    str = re.sub (r'\\autochange\s+Staff', r'\\autochange ', str)
+    return str
 
 conversions.append (((2,1,18), conv, """\\newpartcombine -> \\partcombine,
 \\autochange Staff -> \\autochange
@@ -1812,69 +1815,69 @@ conversions.append (((2,1,18), conv, """\\newpartcombine -> \\partcombine,
 
 
 def conv (str):
-       if re.search ('include "drumpitch', str):
-               error_file.write ("Drums found. Enclose drum notes in \\drummode")
-               
-       str = re.sub (r'\\include "drumpitch-init.ly"','', str)
-       
-       str = re.sub (r'\\pitchnames ','pitchnames = ', str)
-       str = re.sub (r'\\chordmodifiers ','chordmodifiers = ', str)
-       str = re.sub (r'\bdrums\b\s*=','drumContents = ', str)
-       str = re.sub (r'\\drums\b','\\drumContents ', str)
+    if re.search ('include "drumpitch', str):
+       error_file.write ("Drums found. Enclose drum notes in \\drummode")
 
+    str = re.sub (r'\\include "drumpitch-init.ly"','', str)
 
-       if re.search ('drums->paper', str):
-               error_file.write ("\nDrum notation found. Check file manually!")
+    str = re.sub (r'\\pitchnames ','pitchnames = ', str)
+    str = re.sub (r'\\chordmodifiers ','chordmodifiers = ', str)
+    str = re.sub (r'\bdrums\b\s*=','drumContents = ', str)
+    str = re.sub (r'\\drums\b','\\drumContents ', str)
 
-       str = re.sub (r"""\\apply\s+#\(drums->paper\s+'([a-z]+)\)""",
-                     r"""\property DrumStaff.drumStyleTable = #\1-style""",
-                     str)
 
-       if re.search ('Thread', str):
-               error_file.write ("\nThread found. Check file manually!\n");
+    if re.search ('drums->paper', str):
+       error_file.write ("\nDrum notation found. Check file manually!")
 
-       str = re.sub (r"""(\\once\s*)?\\property\s+Thread\s*\.\s*NoteHead\s*"""
-                     + r"""\\(set|override)\s*#'style\s*=\s*#'harmonic"""
-                     + r"""\s+([a-z]+[,'=]*)([0-9]*\.*)"""
-                     ,r"""<\3\\harmonic>\4""", str)
+    str = re.sub (r"""\\apply\s+#\(drums->paper\s+'([a-z]+)\)""",
+                 r"""\property DrumStaff.drumStyleTable = #\1-style""",
+                 str)
 
-       str = re.sub (r"""\\new Thread""", """\context Voice""", str)
-       str = re.sub (r"""Thread""", """Voice""", str)
+    if re.search ('Thread', str):
+       error_file.write ("\nThread found. Check file manually!\n");
 
-       if re.search ('\bLyrics\b', str):
-               error_file.write ("\nLyrics found. Check file manually!\n");
+    str = re.sub (r"""(\\once\s*)?\\property\s+Thread\s*\.\s*NoteHead\s*"""
+                 + r"""\\(set|override)\s*#'style\s*=\s*#'harmonic"""
+                 + r"""\s+([a-z]+[,'=]*)([0-9]*\.*)"""
+                 ,r"""<\3\\harmonic>\4""", str)
 
-       str = re.sub (r"""LyricsVoice""", r"""L@ricsVoice""", str)
-       str = re.sub (r"""\bLyrics\b""", r"""LyricsVoice""", str)
-       str = re.sub (r"""LyricsContext""", r"""LyricsVoiceContext""", str)
-       str = re.sub (r"""L@ricsVoice""", r"""LyricsVoice""",str)
+    str = re.sub (r"""\\new Thread""", """\context Voice""", str)
+    str = re.sub (r"""Thread""", """Voice""", str)
 
+    if re.search ('\bLyrics\b', str):
+       error_file.write ("\nLyrics found. Check file manually!\n");
 
-       return str
+    str = re.sub (r"""LyricsVoice""", r"""L@ricsVoice""", str)
+    str = re.sub (r"""\bLyrics\b""", r"""LyricsVoice""", str)
+    str = re.sub (r"""LyricsContext""", r"""LyricsVoiceContext""", str)
+    str = re.sub (r"""L@ricsVoice""", r"""LyricsVoice""",str)
+
+
+    return str
 
 conversions.append (((2,1,19), conv, """Drum notation changes, Removing \\chordmodifiers, \\notenames.
 Harmonic notes. Thread context removed. Lyrics context removed."""))
 
 def conv (str):
-       str = re.sub (r'nonevent-skip', 'skip-music', str)
-       return str
+    str = re.sub (r'nonevent-skip', 'skip-music', str)
+    return str
 
 conversions.append (((2,1,20), conv, """nonevent-skip -> skip-music""" ))
 
 def conv (str):
-       str = re.sub (r'molecule-callback', 'print-function', str)
-       str = re.sub (r'brew_molecule', 'print', str)
-       str = re.sub (r'brew-new-markup-molecule', 'Text_item::print', str)
-       str = re.sub (r'LyricsVoice', 'Lyrics', str)
-       str = re.sub (r'tupletInvisible',
-                     r"TupletBracket \\set #'transparent", str)
+    str = re.sub (r'molecule-callback', 'print-function', str)
+    str = re.sub (r'brew_molecule', 'print', str)
+    str = re.sub (r'brew-new-markup-molecule', 'Text_item::print', str)
+    str = re.sub (r'LyricsVoice', 'Lyrics', str)
+    str = re.sub (r'tupletInvisible',
+                 r"TupletBracket \\set #'transparent", str)
 #      str = re.sub (r'molecule', 'collage', str)
 #molecule -> collage
-       str = re.sub (r"\\property\s+[a-zA-Z]+\s*\.\s*[a-zA-Z]+\s*"
-                     + r"\\set\s*#'X-extent-callback\s*=\s*#Grob::preset_extent",
-                     "", str)
+    str = re.sub (r"\\property\s+[a-zA-Z]+\s*\.\s*[a-zA-Z]+\s*"
+                 + r"\\set\s*#'X-extent-callback\s*=\s*#Grob::preset_extent",
+                 "", str)
 
-       return str
+    return str
 
 conversions.append (((2,1,21), conv, """molecule-callback -> print-function,
 brew_molecule -> print
@@ -1886,28 +1889,28 @@ Grob::preset_extent removed.
 
 
 def conv (str):
-       str = re.sub (r'(\\property[^=]+)=\s*([-0-9]+)',
-                     r'\1= #\2', str)
-       str = re.sub (r'\\property\s+([^. ]+)\s*\.\s*([^\\=]+)\s*\\(set|override)',
-                     r"\\overrid@ \1.\2 ", str)
-       str = re.sub (r'\\property\s+([^. ]+)\s*\.\s*([^\\= ]+)\s*=\s*',
-                     r'\\s@t \1.\2 = ', str)
-       str = re.sub (r'\\property\s+([^. ]+)\s*\.\s*([^\\= ]+)\s*\\unset',
-                     r'\\uns@t \1.\2 ', str)
-       str = re.sub (r'\\property\s+([^. ]+)\s*\.\s*([^\\= ]+)\s*\\revert'
-                     + r"\s*#'([-a-z0-9_]+)",
-                     r"\\rev@rt \1.\2 #'\3", str)
-       str = re.sub (r'Voice\.', '', str)
-       str = re.sub (r'Lyrics\.', '', str)
-       str = re.sub (r'ChordNames\.', '', str)
-
-       str = re.sub ('rev@rt', 'revert',str)
-       str = re.sub ('s@t', 'set',str)
-       str = re.sub ('overrid@', 'override',str)
-
-       str = re.sub ('molecule', 'stencil', str)
-       str = re.sub ('Molecule', 'Stencil', str)
-       return str
+    str = re.sub (r'(\\property[^=]+)=\s*([-0-9]+)',
+                 r'\1= #\2', str)
+    str = re.sub (r'\\property\s+([^. ]+)\s*\.\s*([^\\=]+)\s*\\(set|override)',
+                 r"\\overrid@ \1.\2 ", str)
+    str = re.sub (r'\\property\s+([^. ]+)\s*\.\s*([^\\= ]+)\s*=\s*',
+                 r'\\s@t \1.\2 = ', str)
+    str = re.sub (r'\\property\s+([^. ]+)\s*\.\s*([^\\= ]+)\s*\\unset',
+                 r'\\uns@t \1.\2 ', str)
+    str = re.sub (r'\\property\s+([^. ]+)\s*\.\s*([^\\= ]+)\s*\\revert'
+                 + r"\s*#'([-a-z0-9_]+)",
+                 r"\\rev@rt \1.\2 #'\3", str)
+    str = re.sub (r'Voice\.', '', str)
+    str = re.sub (r'Lyrics\.', '', str)
+    str = re.sub (r'ChordNames\.', '', str)
+
+    str = re.sub ('rev@rt', 'revert',str)
+    str = re.sub ('s@t', 'set',str)
+    str = re.sub ('overrid@', 'override',str)
+
+    str = re.sub ('molecule', 'stencil', str)
+    str = re.sub ('Molecule', 'Stencil', str)
+    return str
 
 conversions.append (((2,1,22), conv, """new syntax for property settings:
        \\set A.B = #C , \\unset A.B
@@ -1916,152 +1919,152 @@ conversions.append (((2,1,22), conv, """new syntax for property settings:
 """))
 
 def conv (str):
-       def subst_in_trans (match):
-               s = match.group (0)
-               s = re.sub (r'\s([a-zA-Z]+)\s*\\override',
-                             r' \\override \1', s)
-               s = re.sub (r'\s([a-zA-Z]+)\s*\\set',
-                             r' \\override \1', s)
-               s = re.sub (r'\s([a-zA-Z]+)\s*\\revert',
-                             r' \\revert \1', s)
-               return s
-       str = re.sub (r'\\(translator|with)\s*{[^}]+}',  subst_in_trans, str)
+    def subst_in_trans (match):
+       s = match.group (0)
+       s = re.sub (r'\s([a-zA-Z]+)\s*\\override',
+                     r' \\override \1', s)
+       s = re.sub (r'\s([a-zA-Z]+)\s*\\set',
+                     r' \\override \1', s)
+       s = re.sub (r'\s([a-zA-Z]+)\s*\\revert',
+                     r' \\revert \1', s)
+       return s
+    str = re.sub (r'\\(translator|with)\s*{[^}]+}',  subst_in_trans, str)
 
-       def sub_abs (m):
+    def sub_abs (m):
 
-               context = m.group ('context')
-               d = m.groupdict ()
-               if context:
-                       context = " '%s" % context[:-1] # -1: remove .
-               else:
-                       context = ''
+       context = m.group ('context')
+       d = m.groupdict ()
+       if context:
+           context = " '%s" % context[:-1] # -1: remove .
+       else:
+           context = ''
 
-               d['context'] = context
+       d['context'] = context
 
-               return r"""#(override-auto-beam-setting %(prop)s %(num)s %(den)s%(context)s)""" % d
+       return r"""#(override-auto-beam-setting %(prop)s %(num)s %(den)s%(context)s)""" % d
 
-       str = re.sub (r"""\\override\s*(?P<context>[a-zA-Z]+\s*\.\s*)?autoBeamSettings"""
-                     +r"""\s*#(?P<prop>[^=]+)\s*=\s*#\(ly:make-moment\s+(?P<num>\d+)\s+(?P<den>\d)\s*\)""",
-                     sub_abs, str)
+    str = re.sub (r"""\\override\s*(?P<context>[a-zA-Z]+\s*\.\s*)?autoBeamSettings"""
+                 +r"""\s*#(?P<prop>[^=]+)\s*=\s*#\(ly:make-moment\s+(?P<num>\d+)\s+(?P<den>\d)\s*\)""",
+                 sub_abs, str)
 
-       return str
+    return str
 
 conversions.append (((2,1,23), conv, """Property setting syntax in \\translator{ }"""))
 def conv (str):
-       str = re.sub (r'music-list\?', 'ly:music-list?', str)
-       str = re.sub (r'\|\s*~', '~ |', str)
-       return str
+    str = re.sub (r'music-list\?', 'ly:music-list?', str)
+    str = re.sub (r'\|\s*~', '~ |', str)
+    return str
 
 conversions.append (((2,1,24), conv, """music-list? -> ly:music-list?"""))
 
 def conv (str):
-       str = re.sub (r'ly:get-spanner-bound', 'ly:spanner-get-bound', str)
-       str = re.sub (r'ly:get-extent', 'ly:grob-extent', str)
-       str = re.sub (r'ly:get-system', 'ly:grob-system', str)
-       str = re.sub (r'ly:get-original', 'ly:grob-original', str)
-       str = re.sub (r'ly:get-parent', 'ly:grob-parent', str)
-       str = re.sub (r'ly:get-broken-into', 'ly:spanner-broken-into', str)
-       str = re.sub (r'Melisma_engraver', 'Melisma_translator', str)
-       if re.search ("ly:get-paper-variable", str):
-               error_file.write ('\n')
-               error_file.write (NOT_SMART % "ly:paper-get-variable")
-               error_file.write ('\n')
-               error_file.write ('use (ly:paper-lookup (ly:grob-paper ))')
-               error_file.write ('\n')
-               raise FatalConversionError ()
-
-       str = re.sub (r'\\defaultAccidentals', "#(set-accidental-style 'default)", str)
-       str = re.sub (r'\\voiceAccidentals', "#(set-accidental-style 'voice)", str)
-       str = re.sub (r'\\modernAccidentals', "#(set-accidental-style 'modern)", str)
-       str = re.sub (r'\\modernCautionaries', "#(set-accidental-style 'modern-cautionary)", str)
-       str = re.sub (r'\\modernVoiceAccidental', "#(set-accidental-style 'modern-voice)", str)
-       str = re.sub (r'\\modernVoiceCautionaries', "#(set-accidental-style 'modern-voice-cautionary)", str)
-       str = re.sub (r'\\pianoAccidentals', "#(set-accidental-style 'piano)", str)
-       str = re.sub (r'\\pianoCautionaries', "#(set-accidental-style 'piano-cautionary)", str)
-       str = re.sub (r'\\forgetAccidentals', "#(set-accidental-style 'forget)", str)
-       str = re.sub (r'\\noResetKey', "#(set-accidental-style 'no-reset)", str)
-
-       return str
+    str = re.sub (r'ly:get-spanner-bound', 'ly:spanner-get-bound', str)
+    str = re.sub (r'ly:get-extent', 'ly:grob-extent', str)
+    str = re.sub (r'ly:get-system', 'ly:grob-system', str)
+    str = re.sub (r'ly:get-original', 'ly:grob-original', str)
+    str = re.sub (r'ly:get-parent', 'ly:grob-parent', str)
+    str = re.sub (r'ly:get-broken-into', 'ly:spanner-broken-into', str)
+    str = re.sub (r'Melisma_engraver', 'Melisma_translator', str)
+    if re.search ("ly:get-paper-variable", str):
+       error_file.write ('\n')
+       error_file.write (NOT_SMART % "ly:paper-get-variable")
+       error_file.write ('\n')
+       error_file.write ('use (ly:paper-lookup (ly:grob-paper ))')
+       error_file.write ('\n')
+       raise FatalConversionError ()
+
+    str = re.sub (r'\\defaultAccidentals', "#(set-accidental-style 'default)", str)
+    str = re.sub (r'\\voiceAccidentals', "#(set-accidental-style 'voice)", str)
+    str = re.sub (r'\\modernAccidentals', "#(set-accidental-style 'modern)", str)
+    str = re.sub (r'\\modernCautionaries', "#(set-accidental-style 'modern-cautionary)", str)
+    str = re.sub (r'\\modernVoiceAccidental', "#(set-accidental-style 'modern-voice)", str)
+    str = re.sub (r'\\modernVoiceCautionaries', "#(set-accidental-style 'modern-voice-cautionary)", str)
+    str = re.sub (r'\\pianoAccidentals', "#(set-accidental-style 'piano)", str)
+    str = re.sub (r'\\pianoCautionaries', "#(set-accidental-style 'piano-cautionary)", str)
+    str = re.sub (r'\\forgetAccidentals', "#(set-accidental-style 'forget)", str)
+    str = re.sub (r'\\noResetKey', "#(set-accidental-style 'no-reset)", str)
+
+    return str
 
 conversions.append (((2,1,25), conv, """Scheme grob function renaming"""))
 
 
 def conv (str):
-       str = re.sub ('ly:set-grob-property!', 'ly:grob-set-property!',str)
-       str = re.sub ('ly:set-mus-property!', 'ly:music-set-property!',str)
-       str = re.sub ('ly:set-context-property!', 'ly:context-set-property!', str)
-       str = re.sub ('ly:get-grob-property', 'ly:grob-property',str)
-       str = re.sub ('ly:get-mus-property', 'ly:music-property',str)
-       str = re.sub ('ly:get-context-property', 'ly:context-property',str)
+    str = re.sub ('ly:set-grob-property!', 'ly:grob-set-property!',str)
+    str = re.sub ('ly:set-mus-property!', 'ly:music-set-property!',str)
+    str = re.sub ('ly:set-context-property!', 'ly:context-set-property!', str)
+    str = re.sub ('ly:get-grob-property', 'ly:grob-property',str)
+    str = re.sub ('ly:get-mus-property', 'ly:music-property',str)
+    str = re.sub ('ly:get-context-property', 'ly:context-property',str)
 
-       return str
+    return str
 
 conversions.append (((2,1,26), conv, """More Scheme function renaming"""))
 
 def conv (str):
-       def subst (m):
-               g = string.atoi (m.group (2))
-               o = g / 12
-               g -= o * 12
-               if g <  0:
-                       g += 12
-                       o -= 1
+    def subst (m):
+       g = string.atoi (m.group (2))
+       o = g / 12
+       g -= o * 12
+       if g <  0:
+           g += 12
+           o -= 1
 
 
-               lower_pitches = filter (lambda x : x <= g, [0, 2, 4, 5, 7, 9, 11, 12])
-               s = len (lower_pitches) -1
-               a = g - lower_pitches [-1]
+       lower_pitches = filter (lambda x : x <= g, [0, 2, 4, 5, 7, 9, 11, 12])
+       s = len (lower_pitches) -1
+       a = g - lower_pitches [-1]
 
 
-               print s , lower_pitches, g, a, s
-               str = 'cdefgab' [s]
-               str += ['eses', 'es', '', 'is', 'isis'][a + 2]
-               if o < 0:
-                       str += ',' * (-o - 1)
-               elif o >= 0:
-                       str += "'" * (o + 1)
+       print s , lower_pitches, g, a, s
+       str = 'cdefgab' [s]
+       str += ['eses', 'es', '', 'is', 'isis'][a + 2]
+       if o < 0:
+           str += ',' * (-o - 1)
+       elif o >= 0:
+           str += "'" * (o + 1)
 
-               return '\\transposition %s ' % str
+       return '\\transposition %s ' % str
 
 
-       str = re.sub (r"\\set ([A-Za-z]+\s*\.\s*)?transposing\s*=\s*#([-0-9]+)",
-                     subst, str)
-       return str
+    str = re.sub (r"\\set ([A-Za-z]+\s*\.\s*)?transposing\s*=\s*#([-0-9]+)",
+                 subst, str)
+    return str
 
 conversions.append (((2,1,27), conv, """property transposing -> tuning"""))
 
 def conv (str):
-       str = re.sub (r'make-music-by-name', 'make-music', str)
-       str = re.sub (r"\\override\s+.*Arpeggio\s+#.print-function\s+=\s+\\arpeggioBracket", r"\\arpeggioBracket", str)
-       return str
+    str = re.sub (r'make-music-by-name', 'make-music', str)
+    str = re.sub (r"\\override\s+.*Arpeggio\s+#.print-function\s+=\s+\\arpeggioBracket", r"\\arpeggioBracket", str)
+    return str
 
 conversions.append (((2,1,28), conv,
                     """make-music-by-name -> make-music,
 new syntax for setting \\arpeggioBracket"""))
 
 def conv (str):
-       str = re.sub (r'\\center([^-])', '\\center-align\\1', str)
-       str = re.sub (r'\\translator', '\\context', str)
-       return str
+    str = re.sub (r'\\center([^-])', '\\center-align\\1', str)
+    str = re.sub (r'\\translator', '\\context', str)
+    return str
 
 conversions.append (((2,1,29), conv,
                     '\\center -> \\center-align, \\translator -> \\context'))
 
 
 def conv (str):
-       str = re.sub (r'\\threeq(flat|sharp)', r'\\sesqui\1', str)
-       str = re.sub (r'ly:stencil-get-extent',
-                     'ly:stencil-extent', str)
-       str = re.sub (r'ly:translator-find',
-                     'ly:context-find', str)
-       str = re.sub ('ly:unset-context-property','ly:context-unset-property',
-                     str)
+    str = re.sub (r'\\threeq(flat|sharp)', r'\\sesqui\1', str)
+    str = re.sub (r'ly:stencil-get-extent',
+                 'ly:stencil-extent', str)
+    str = re.sub (r'ly:translator-find',
+                 'ly:context-find', str)
+    str = re.sub ('ly:unset-context-property','ly:context-unset-property',
+                 str)
 
-       str = re.sub (r'ly:get-mutable-properties',
-                     'ly:mutable-music-properties',str)
-       str = re.sub (r'centralCPosition',
-                     'middleCPosition',str)
-       return str
+    str = re.sub (r'ly:get-mutable-properties',
+                 'ly:mutable-music-properties',str)
+    str = re.sub (r'centralCPosition',
+                 'middleCPosition',str)
+    return str
 
 conversions.append (((2,1,30), conv,
                     '''\\threeq{flat,sharp} -> \\sesqui{flat,sharp}
@@ -2074,34 +2077,34 @@ ly:get-stencil-extent -> ly:stencil-extent
 
 
 def conv (str):
-       str = re.sub (r'\\alias\s*"?Timing"?', '', str)
-       return str
+    str = re.sub (r'\\alias\s*"?Timing"?', '', str)
+    return str
 
 conversions.append (((2,1,31), conv,
                     '''remove \\alias Timing'''))
 
 def conv (str):
-       str = re.sub (r"(\\set\s+)?(?P<context>(Score\.)?)breakAlignOrder\s*=\s*#'(?P<list>[^\)]+)",
-                     r"\n\\override \g<context>BreakAlignment #'break-align-orders = "
-                     + "#(make-vector 3 '\g<list>)", str)
+    str = re.sub (r"(\\set\s+)?(?P<context>(Score\.)?)breakAlignOrder\s*=\s*#'(?P<list>[^\)]+)",
+                 r"\n\\override \g<context>BreakAlignment #'break-align-orders = "
+                 + "#(make-vector 3 '\g<list>)", str)
 
-       return str
+    return str
 
 conversions.append (((2,1,33), conv,
                     '''breakAlignOrder -> break-align-orders.'''))
 
 def conv (str):
-       str = re.sub (r"\(set-paper-size",
-                     "(set-default-paper-size",str)
-       return str
+    str = re.sub (r"\(set-paper-size",
+                 "(set-default-paper-size",str)
+    return str
 
 conversions.append (((2,1,34), conv,
                     '''set-paper-size -> set-default-paper-size.'''))
 
 def conv (str):
-       str = re.sub (r"ly:mutable-music-properties",
-                     "ly:music-mutable-properties", str)
-       return str
+    str = re.sub (r"ly:mutable-music-properties",
+                 "ly:music-mutable-properties", str)
+    return str
 
 conversions.append (((2,1, 36), conv,
                     '''ly:mutable-music-properties -> ly:music-mutable-properties'''))
@@ -2109,49 +2112,49 @@ conversions.append (((2,1, 36), conv,
 
 
 def conv (str):
-       return str
+    return str
 
 conversions.append (((2, 2, 0), conv,
                     '''clean up version. '''))
 
 def conv (str):
-       return re.sub (r'\\apply\b', r'\\applymusic', str)
+    return re.sub (r'\\apply\b', r'\\applymusic', str)
 
 conversions.append (((2, 3, 1), conv,
                     '''\\apply -> \\applymusic'''))
 
 def conv (str):
-       if re.search ('textheight', str):
-               error_file.write ('\n')
-               error_file.write (NOT_SMART % "textheight")
-               error_file.write ('\n')
-               error_file.write (UPDATE_MANUALLY)
-               error_file.write ('\n')
-               error_file.write (
+    if re.search ('textheight', str):
+       error_file.write ('\n')
+       error_file.write (NOT_SMART % "textheight")
+       error_file.write ('\n')
+       error_file.write (UPDATE_MANUALLY)
+       error_file.write ('\n')
+       error_file.write (
 """Page layout has been changed, using paper size and margins.
 textheight is no longer used.
 """)
-       str = re.sub (r'\\OrchestralScoreContext', '\\Score', str)
-       def func(m):
-               if m.group(1) not in ['RemoveEmptyStaff',
-                                     'AncientRemoveEmptyStaffContext',
-                                     'EasyNotation']:
-                       return '\\' + m.group (1)
-               else:
-                       return m.group (0)
+    str = re.sub (r'\\OrchestralScoreContext', '\\Score', str)
+    def func(m):
+       if m.group(1) not in ['RemoveEmptyStaff',
+                             'AncientRemoveEmptyStaffContext',
+                             'EasyNotation']:
+           return '\\' + m.group (1)
+       else:
+           return m.group (0)
 
 
-       str = re.sub (r'\\([a-zA-Z]+)Context\b', func, str)
-       str = re.sub ('ly:paper-lookup', 'ly:output-def-lookup', str)
-       return str
+    str = re.sub (r'\\([a-zA-Z]+)Context\b', func, str)
+    str = re.sub ('ly:paper-lookup', 'ly:output-def-lookup', str)
+    return str
 
 conversions.append (((2, 3, 2), conv,
                     '''\\FooContext -> \\Foo'''))
 
 def conv (str):
-       str = re.sub (r'\\notes\b', '', str)
+    str = re.sub (r'\\notes\b', '', str)
 
-       return str
+    return str
 
 conversions.append (((2, 3, 4), conv,
                     '''remove \\notes'''))
@@ -2159,8 +2162,8 @@ conversions.append (((2, 3, 4), conv,
 
 
 def conv (str):
-       str = re.sub (r'lastpagefill\s*=\s*"?1"', 'raggedlastbottom = ##t', str)
-       return str
+    str = re.sub (r'lastpagefill\s*=\s*"?1"', 'raggedlastbottom = ##t', str)
+    return str
 
 conversions.append (((2, 3, 6), conv,
                     '''lastpagefill -> raggedlastbottom'''))
@@ -2168,18 +2171,18 @@ conversions.append (((2, 3, 6), conv,
 
 
 def conv (str):
-       str = re.sub (r'\\consistsend', '\\consists', str)
-       str = re.sub (r'\\lyricsto\s+("?[a-zA-Z]+"?)(\s*\\new Lyrics\s*)?\\lyrics',
-                     r'\\lyricsto \1 \2', str)
-       return str
+    str = re.sub (r'\\consistsend', '\\consists', str)
+    str = re.sub (r'\\lyricsto\s+("?[a-zA-Z]+"?)(\s*\\new Lyrics\s*)?\\lyrics',
+                 r'\\lyricsto \1 \2', str)
+    return str
 
 conversions.append (((2, 3, 8), conv,
                     '''remove \\consistsend, strip \\lyrics from \\lyricsto.'''))
 
 def conv (str):
-       str = re.sub (r'neo_mensural', 'neomensural', str)
-       str = re.sub (r'if-text-padding', 'bound-padding', str)
-       return str
+    str = re.sub (r'neo_mensural', 'neomensural', str)
+    str = re.sub (r'if-text-padding', 'bound-padding', str)
+    return str
 
 conversions.append (((2, 3, 9), conv,
                     '''neo_mensural -> neomensural, if-text-padding -> bound-padding'''))
@@ -2187,43 +2190,43 @@ conversions.append (((2, 3, 9), conv,
 
 
 def conv (str):
-       str = re.sub (r'\\addlyrics', r'\\oldaddlyrics', str)
-       str = re.sub (r'\\newlyrics', r'\\addlyrics', str)
-       if re.search (r"\\override\s*TextSpanner", str):
-               error_file.write ("\nWarning: TextSpanner has been split into DynamicTextSpanner and TextSpanner\n")
-       return str
+    str = re.sub (r'\\addlyrics', r'\\oldaddlyrics', str)
+    str = re.sub (r'\\newlyrics', r'\\addlyrics', str)
+    if re.search (r"\\override\s*TextSpanner", str):
+       error_file.write ("\nWarning: TextSpanner has been split into DynamicTextSpanner and TextSpanner\n")
+    return str
 
 conversions.append (((2, 3, 10), conv,
                     '''\\addlyrics -> \\oldaddlyrics, \\newlyrics -> \\addlyrics'''))
 
 def conv (str):
-       str = re.sub (r'\\setMmRestFermata\s+(R[0-9.*/]*)',
-                     r'\1^\\fermataMarkup', str)
-       return str
+    str = re.sub (r'\\setMmRestFermata\s+(R[0-9.*/]*)',
+                 r'\1^\\fermataMarkup', str)
+    return str
 
 conversions.append (((2, 3, 11), conv,
                     '''\\setMmRestFermata -> ^\\fermataMarkup'''))
 
 def conv (str):
-       str = re.sub (r'\\newpage', r'\\pageBreak', str)
-       str = re.sub (r'\\scriptUp', r"""{
-  \\override TextScript  #'direction = #1
-  \\override Script  #'direction = #1
+    str = re.sub (r'\\newpage', r'\\pageBreak', str)
+    str = re.sub (r'\\scriptUp', r"""{
+\\override TextScript  #'direction = #1
+\\override Script  #'direction = #1
 }""", str)
-       str = re.sub (r'\\scriptDown', r"""{
+    str = re.sub (r'\\scriptDown', r"""{
   \\override TextScript  #'direction = #-1
   \\override Script  #'direction = #-1
 }""", str)
-       str = re.sub (r'\\scriptBoth', r"""{
+    str = re.sub (r'\\scriptBoth', r"""{
   \\revert TextScript  #'direction
   \\revert Script  #'direction
 }""", str)
-       str = re.sub ('soloADue', 'printPartCombineTexts', str)
-       str = re.sub (r'\\applymusic\s*#notes-to-clusters',
+    str = re.sub ('soloADue', 'printPartCombineTexts', str)
+    str = re.sub (r'\\applymusic\s*#notes-to-clusters',
                      '\\makeClusters', str)
-
-       str = re.sub (r'pagenumber\s*=', 'firstpagenumber = ', str)
-       return str
+    
+    str = re.sub (r'pagenumber\s*=', 'firstpagenumber = ', str)
+    return str
 
 conversions.append (((2, 3, 12), conv,
                     '''\\newpage -> \\pageBreak, junk \\script{up,down,both},
@@ -2232,29 +2235,29 @@ soloADue -> printPartCombineTexts, #notes-to-clusters -> \\makeClusters
 
 
 def conv (str):
-       str = re.sub (r'\\chords\b', r'\\chordmode', str)
-       str = re.sub (r'\\lyrics\b', r'\\lyricmode', str)
-       str = re.sub (r'\\figures\b', r'\\figuremode', str)
-       str = re.sub (r'\\notes\b', r'\\notemode', str)
-       str = re.sub (r'\\drums\b', r'\\drummode', str)
-       str = re.sub (r'\\chordmode\s*\\new ChordNames', r'\\chords', str)
-       str = re.sub (r'\\new ChordNames\s*\\chordmode', r'\\chords', str)
-       str = re.sub (r'\\new FiguredBass\s*\\figuremode', r'\\figures', str)
-       str = re.sub (r'\\figuremode\s*\new FiguredBass', r'\\figures', str)
-       str = re.sub (r'\\new DrumStaff\s*\\drummode', r'\\drums', str)
-       str = re.sub (r'\\drummode\s*\\new DrumStaff', r'\\drums', str)
+    str = re.sub (r'\\chords\b', r'\\chordmode', str)
+    str = re.sub (r'\\lyrics\b', r'\\lyricmode', str)
+    str = re.sub (r'\\figures\b', r'\\figuremode', str)
+    str = re.sub (r'\\notes\b', r'\\notemode', str)
+    str = re.sub (r'\\drums\b', r'\\drummode', str)
+    str = re.sub (r'\\chordmode\s*\\new ChordNames', r'\\chords', str)
+    str = re.sub (r'\\new ChordNames\s*\\chordmode', r'\\chords', str)
+    str = re.sub (r'\\new FiguredBass\s*\\figuremode', r'\\figures', str)
+    str = re.sub (r'\\figuremode\s*\new FiguredBass', r'\\figures', str)
+    str = re.sub (r'\\new DrumStaff\s*\\drummode', r'\\drums', str)
+    str = re.sub (r'\\drummode\s*\\new DrumStaff', r'\\drums', str)
 
-       return str
+    return str
 
 conversions.append (((2, 3, 16), conv,
                     '''\\foo -> \\foomode (for chords, notes, etc.)
 fold \\new FooContext \\foomode into \\foo.'''))
 
 def conv (str):
-       str = re.sub (r'(slur|stem|phrasingSlur|tie|dynamic|dots|tuplet|arpeggio|)Both', r'\1Neutral', str)
-       str = re.sub (r"\\applymusic\s*#\(remove-tag\s*'([a-z-0-9]+)\)",
-                     r"\\removeWithTag #'\1", str)
-       return str
+    str = re.sub (r'(slur|stem|phrasingSlur|tie|dynamic|dots|tuplet|arpeggio|)Both', r'\1Neutral', str)
+    str = re.sub (r"\\applymusic\s*#\(remove-tag\s*'([a-z-0-9]+)\)",
+                 r"\\removeWithTag #'\1", str)
+    return str
 
 conversions.append (((2, 3, 17), conv,
                     '''\\foo -> \\foomode (for chords, notes, etc.)
@@ -2262,18 +2265,18 @@ fold \\new FooContext \\foomode into \\foo.'''))
 
 
 def conv (str):
-       str = re.sub (r'Text_item', 'Text_interface', str)
-       return str
+    str = re.sub (r'Text_item', 'Text_interface', str)
+    return str
 
 conversions.append (((2, 3, 18),
                     conv,
                     '''Text_item -> Text_interface''' ))
 
 def conv (str):
-       str = re.sub (r'\\paper', r'\\layout', str)
-       str = re.sub (r'\\bookpaper', r'\\paper', str)
-       if re.search ('paper-set-staff-size', str):
-               error_file.write ('''\nWarning: staff size should be changed at top-level
+    str = re.sub (r'\\paper', r'\\layout', str)
+    str = re.sub (r'\\bookpaper', r'\\paper', str)
+    if re.search ('paper-set-staff-size', str):
+       error_file.write ('''\nWarning: staff size should be changed at top-level
 with
 
   #(set-global-staff-size <STAFF-HEIGHT-IN-POINT>)
@@ -2281,9 +2284,9 @@ with
 ''')
 
 
-       str = re.sub (r'#\(paper-set-staff-size', '%Use set-global-staff-size at toplevel\n% #(layout-set-staff-size', str)
-       return str
-
+    str = re.sub (r'#\(paper-set-staff-size', '%Use set-global-staff-size at toplevel\n% #(layout-set-staff-size', str)
+    return str
+    
 conversions.append (((2, 3, 22),
                     conv,
                     '''paper -> layout
@@ -2291,21 +2294,21 @@ conversions.append (((2, 3, 22),
 
 
 def conv (str):
-       str = re.sub (r'\\context\s+([a-zA-Z]+)\s*=\s*([a-z]+)\s',
-                     r'\\context \1 = "\2" ',
-                     str )
-       return str
+    str = re.sub (r'\\context\s+([a-zA-Z]+)\s*=\s*([a-z]+)\s',
+                 r'\\context \1 = "\2" ',
+                 str )
+    return str
 
 conversions.append (((2, 3, 23),
                     conv,
                     '''\context Foo = NOTENAME -> \context Foo = "NOTENAME"'''))
 
 def conv (str):
-       def sub(m):
-               return regularize_id (m.group (1))
-       str = re.sub (r'(maintainer_email|maintainer_web|midi_stuff|gourlay_maxmeasures)',
-                     sub, str)
-       return str
+    def sub(m):
+       return regularize_id (m.group (1))
+    str = re.sub (r'(maintainer_email|maintainer_web|midi_stuff|gourlay_maxmeasures)',
+                 sub, str)
+    return str
 
 conversions.append (((2, 3, 24),
                     conv,
@@ -2313,7 +2316,7 @@ conversions.append (((2, 3, 24),
 
 
 def conv (str):
-       return str
+    return str
 
 conversions.append (((2, 4, 0),
                     conv,
@@ -2321,11 +2324,11 @@ conversions.append (((2, 4, 0),
 
 
 def conv (str):
-       str = re.sub (r'\\quote\s+"?([a-zA-Z0-9]+)"?\s+([0-9.*/]+)',
-                     r'\\quoteDuring #"\1" { \skip \2 }',
-                     str
-                     )
-       return str
+    str = re.sub (r'\\quote\s+"?([a-zA-Z0-9]+)"?\s+([0-9.*/]+)',
+                 r'\\quoteDuring #"\1" { \skip \2 }',
+                 str
+                 )
+    return str
 
 conversions.append (((2, 5, 0),
                     conv,
@@ -2333,38 +2336,38 @@ conversions.append (((2, 5, 0),
 
 
 def conv (str):
-       str = re.sub (r'ly:import-module',
-                     r'ly:module-copy', str)
-       return str
+    str = re.sub (r'ly:import-module',
+                 r'ly:module-copy', str)
+    return str
 
 conversions.append (((2, 5, 1),
                     conv,
                     'ly:import-module -> ly:module-copy'))
 
 def conv (str):
-       str = re.sub (r'\\(column|fill-line|dir-column|center-align|right-align|left-align|bracketed-y-column)\s*<(([^>]|<[^>]*>)*)>',
-                     r'\\\1 {\2}', str)
-       str = re.sub (r'\\(column|fill-line|dir-column|center-align|right-align|left-align|bracketed-y-column)\s*<(([^>]|<[^>]*>)*)>',
-                     r'\\\1 {\2}', str)
-       str = re.sub (r'\\(column|fill-line|dir-column|center-align|right-align|left-align|bracketed-y-column)\s*<(([^>]|<[^>]*>)*)>',
-                     r'\\\1 {\2}', str)
-       def get_markup (m):
-               s = m.group (0)
-               s = re.sub (r'''((\\"|})\s*){''', '\2 \\line {', s)
-               return s
-       str = re.sub (r'\\markup\s*{([^}]|{[^}]*})*}', get_markup, str)
-       return str
+    str = re.sub (r'\\(column|fill-line|dir-column|center-align|right-align|left-align|bracketed-y-column)\s*<(([^>]|<[^>]*>)*)>',
+                 r'\\\1 {\2}', str)
+    str = re.sub (r'\\(column|fill-line|dir-column|center-align|right-align|left-align|bracketed-y-column)\s*<(([^>]|<[^>]*>)*)>',
+                 r'\\\1 {\2}', str)
+    str = re.sub (r'\\(column|fill-line|dir-column|center-align|right-align|left-align|bracketed-y-column)\s*<(([^>]|<[^>]*>)*)>',
+                 r'\\\1 {\2}', str)
+    def get_markup (m):
+       s = m.group (0)
+       s = re.sub (r'''((\\"|})\s*){''', '\2 \\line {', s)
+       return s
+    str = re.sub (r'\\markup\s*{([^}]|{[^}]*})*}', get_markup, str)
+    return str
 
 conversions.append (((2, 5, 2),
                     conv,
                     '\markup .. < .. > .. -> \markup .. { .. } ..'))
 
 def conv (str):
-       str = re.sub ('ly:find-glyph-by-name', 'ly:font-get-glyph', str)
-       str = re.sub ('"(scripts|clefs|accidentals)-', r'"\1.', str)
-       str = re.sub ("'hufnagel-do-fa", "'hufnagel.do.fa", str)
-       str = re.sub ("'(vaticana|hufnagel|medicaea|petrucci|neomensural|mensural)-", r"'\1.", str)
-       return str
+    str = re.sub ('ly:find-glyph-by-name', 'ly:font-get-glyph', str)
+    str = re.sub ('"(scripts|clefs|accidentals)-', r'"\1.', str)
+    str = re.sub ("'hufnagel-do-fa", "'hufnagel.do.fa", str)
+    str = re.sub ("'(vaticana|hufnagel|medicaea|petrucci|neomensural|mensural)-", r"'\1.", str)
+    return str
 
 conversions.append (((2, 5, 3),
                     conv,
@@ -2372,64 +2375,64 @@ conversions.append (((2, 5, 3),
 
 
 def conv (str):
-       str = re.sub (r"\\override\s+(Voice\.)?Slur #'dashed\s*=\s*#\d*(\.\d+)?",
-                     r"\\slurDashed", str)
-       return str
+    str = re.sub (r"\\override\s+(Voice\.)?Slur #'dashed\s*=\s*#\d*(\.\d+)?",
+                 r"\\slurDashed", str)
+    return str
 
 conversions.append (((2, 5, 12),
                     conv,
                     '\set Slur #\'dashed = #X -> \slurDashed'))
 
 def conv (str):
-       input_encoding = 'latin1'
-       def func (match):
-               encoding = match.group (1)
-
-               # FIXME: automatic recoding of other than latin1?
-               if encoding == 'latin1':
-                       return match.group (2)
-
-               error_file.write ('\n')
-               error_file.write (NOT_SMART % ("\\encoding: %s" % encoding))
-               error_file.write ('\n')
-               error_file.write (_ ("LilyPond source must be UTF-8"))
-               error_file.write ('\n')
-               if encoding == 'TeX':
-                       error_file.write (_ ("Try the texstrings backend"))
-                       error_file.write ('\n')
-               else:
-                       error_file.write ( _("Do something like: %s") % \
-                                          ("recode %s..utf-8 FILE" % encoding))
-                       error_file.write ('\n')
-               error_file.write (_ ("Or save as UTF-8 in your editor"))
-               error_file.write ('\n')
-               raise FatalConversionError ()
-
-               return match.group (0)
-
-       str = re.sub (r'\\encoding\s+"?([a-zA-Z0-9]+)"?(\s+)', func, str)
-
-       import codecs
-       de_ascii = codecs.getdecoder ('ascii')
-       de_utf_8 = codecs.getdecoder ('utf_8')
-       de_input = codecs.getdecoder (input_encoding)
-       en_utf_8 = codecs.getencoder ('utf_8')
+    input_encoding = 'latin1'
+    def func (match):
+       encoding = match.group (1)
+
+       # FIXME: automatic recoding of other than latin1?
+       if encoding == 'latin1':
+           return match.group (2)
+
+       error_file.write ('\n')
+       error_file.write (NOT_SMART % ("\\encoding: %s" % encoding))
+       error_file.write ('\n')
+       error_file.write (_ ("LilyPond source must be UTF-8"))
+       error_file.write ('\n')
+       if encoding == 'TeX':
+           error_file.write (_ ("Try the texstrings backend"))
+           error_file.write ('\n')
+       else:
+           error_file.write ( _("Do something like: %s") % \
+                              ("recode %s..utf-8 FILE" % encoding))
+           error_file.write ('\n')
+       error_file.write (_ ("Or save as UTF-8 in your editor"))
+       error_file.write ('\n')
+       raise FatalConversionError ()
+
+       return match.group (0)
+
+    str = re.sub (r'\\encoding\s+"?([a-zA-Z0-9]+)"?(\s+)', func, str)
+
+    import codecs
+    de_ascii = codecs.getdecoder ('ascii')
+    de_utf_8 = codecs.getdecoder ('utf_8')
+    de_input = codecs.getdecoder (input_encoding)
+    en_utf_8 = codecs.getencoder ('utf_8')
+    try:
+       de_ascii (str)
+    # only in python >= 2.3
+    # except UnicodeDecodeError:
+    except UnicodeError:
+       # do not re-recode UTF-8 input
        try:
-               de_ascii (str)
-       # only in python >= 2.3
-       # except UnicodeDecodeError:
+           de_utf_8 (str)
+       #except UnicodeDecodeError:
        except UnicodeError:
-               # do not re-recode UTF-8 input
-               try:
-                       de_utf_8 (str)
-               #except UnicodeDecodeError:
-               except UnicodeError:
-                       str = en_utf_8 (de_input (str)[0])[0]
+           str = en_utf_8 (de_input (str)[0])[0]
 
 
 
-       str = re.sub (r"#\(ly:set-point-and-click '[a-z-]+\)", '', str)
-       return str
+    str = re.sub (r"#\(ly:set-point-and-click '[a-z-]+\)", '', str)
+    return str
 
 conversions.append (((2, 5, 13),
                     conv,
@@ -2437,54 +2440,54 @@ conversions.append (((2, 5, 13),
 
 
 def conv (str):
-       if re.search ("ly:stencil-set-extent!", str):
-               error_file.write ('\n')
-               error_file.write (NOT_SMART % "ly:stencil-set-extent!")
-               error_file.write ('\n')
-               error_file.write ('use (set! VAR (ly:make-stencil (ly:stencil-expr VAR) X-EXT Y-EXT))\n')
-               raise FatalConversionError ()
-       if re.search ("ly:stencil-align-to!", str):
-               error_file.write ('\n')
-               error_file.write (NOT_SMART % "ly:stencil-align-to!")
-               error_file.write ('\n')
-               error_file.write ('use (set! VAR (ly:stencil-aligned-to VAR AXIS DIR))\n')
-               raise FatalConversionError ()
-       return str
+    if re.search ("ly:stencil-set-extent!", str):
+       error_file.write ('\n')
+       error_file.write (NOT_SMART % "ly:stencil-set-extent!")
+       error_file.write ('\n')
+       error_file.write ('use (set! VAR (ly:make-stencil (ly:stencil-expr VAR) X-EXT Y-EXT))\n')
+       raise FatalConversionError ()
+    if re.search ("ly:stencil-align-to!", str):
+       error_file.write ('\n')
+       error_file.write (NOT_SMART % "ly:stencil-align-to!")
+       error_file.write ('\n')
+       error_file.write ('use (set! VAR (ly:stencil-aligned-to VAR AXIS DIR))\n')
+       raise FatalConversionError ()
+    return str
 
 conversions.append (((2, 5, 17),
                     conv,
                     'ly:stencil-set-extent! removed'))
-                   
+
 def conv (str):
-       str = re.sub (r"ly:warn\b", 'ly:warning', str)
-       return str
+    str = re.sub (r"ly:warn\b", 'ly:warning', str)
+    return str
 
 conversions.append (((2, 5, 18),
                     conv,
                     'ly:warn -> ly:warning'))
 def conv (str):
-       if re.search ("(override-|revert-)auto-beam-setting", str)\
-          or re.search ("autoBeamSettings", str):
-               error_file.write ('\n')
-               error_file.write (NOT_SMART % "auto beam settings")
-               error_file.write ('\n')
-               error_file.write ('''
+    if re.search ("(override-|revert-)auto-beam-setting", str)\
+       or re.search ("autoBeamSettings", str):
+       error_file.write ('\n')
+       error_file.write (NOT_SMART % "auto beam settings")
+       error_file.write ('\n')
+       error_file.write ('''
 Auto beam settings must now specify each interesting moment in a measure
 explicitely; 1/4 is no longer multiplied to cover moments 1/2 and 3/4 too.
 ''')
-               error_file.write (UPDATE_MANUALLY)
-               error_file.write ('\n')
-               raise FatalConversionError ()
-       return str
+       error_file.write (UPDATE_MANUALLY)
+       error_file.write ('\n')
+       raise FatalConversionError ()
+    return str
 
 conversions.append (((2, 5, 21),
                     conv,
                     'warn about auto beam settings'))
 
 def conv (str):
-       str = re.sub (r"unfoldrepeats", 'unfoldRepeats', str)
-       str = re.sub (r"compressmusic", 'compressMusic', str)
-       return str
+    str = re.sub (r"unfoldrepeats", 'unfoldRepeats', str)
+    str = re.sub (r"compressmusic", 'compressMusic', str)
+    return str
 
 conversions.append (((2, 5, 25), conv,
 
@@ -2492,7 +2495,7 @@ conversions.append (((2, 5, 25), conv,
                     + 'compressmusic -> compressMusic'))
 
 def conv (str):
-       return str
+    return str
 
 conversions.append (((2, 6, 0), conv,
 
@@ -2501,18 +2504,18 @@ conversions.append (((2, 6, 0), conv,
 
 
 def conv (str):
-       return re.sub('ly:get-default-font', 'ly:grob-default-font', str) 
+    return re.sub('ly:get-default-font', 'ly:grob-default-font', str) 
 
 conversions.append (((2, 7, 0), conv,
                     'ly:get-default-font -> ly:grob-default-font'))
 
 def conv (str):
-       str = re.sub('ly:parser-define', 'ly:parser-define!', str)
-       str = re.sub('excentricity', 'eccentricity', str)
-       str = re.sub(r'\\(consists|remove) *"?Timing_engraver"?',
-                    r'\\\1 "Timing_translator" \\\1 "Default_bar_line_engraver"',
-                    str)
-       return str
+    str = re.sub('ly:parser-define', 'ly:parser-define!', str)
+    str = re.sub('excentricity', 'eccentricity', str)
+    str = re.sub(r'\\(consists|remove) *"?Timing_engraver"?',
+                r'\\\1 "Timing_translator" \\\1 "Default_bar_line_engraver"',
+                str)
+    return str
 
 conversions.append (((2, 7, 1), conv,
                     '''ly:parser-define -> ly:parser-define!
@@ -2522,16 +2525,16 @@ Timing_engraver -> Timing_translator + Default_bar_line_engraver
 
 
 def conv (str):
-       str = re.sub('ly:(add|mul|mod|div)-moment', r'ly:moment-\1', str)
-       return str
+    str = re.sub('ly:(add|mul|mod|div)-moment', r'ly:moment-\1', str)
+    return str
 
 conversions.append (((2, 7, 2), conv,
                     '''ly:X-moment -> ly:moment-X'''))
 
 
 def conv (str):
-       str = re.sub('keyAccidentalOrder', 'keyAlterationOrder', str)
-       return str
+    str = re.sub('keyAccidentalOrder', 'keyAlterationOrder', str)
+    return str
 
 conversions.append (((2, 7, 4), conv,
                     '''keyAccidentalOrder->keyAlterationOrder'''))
@@ -2539,15 +2542,15 @@ conversions.append (((2, 7, 4), conv,
 
 
 def conv (str):
-       str = re.sub('Performer_group_performer', 'Performer_group', str)
-       str = re.sub('Engraver_group_engraver', 'Engraver_group', str)
-       str = re.sub (r"#'inside-slur\s*=\s*##t *",
-                     r"#'avoid-slur = #'inside ", str)
-       str = re.sub (r"#'inside-slur\s*=\s*##f *",
-                     r"#'avoid-slur = #'around ", str)
-       str = re.sub (r"#'inside-slur",
-                     r"#'avoid-slur", str)
-       return str
+    str = re.sub('Performer_group_performer', 'Performer_group', str)
+    str = re.sub('Engraver_group_engraver', 'Engraver_group', str)
+    str = re.sub (r"#'inside-slur\s*=\s*##t *",
+                 r"#'avoid-slur = #'inside ", str)
+    str = re.sub (r"#'inside-slur\s*=\s*##f *",
+                 r"#'avoid-slur = #'around ", str)
+    str = re.sub (r"#'inside-slur",
+                 r"#'avoid-slur", str)
+    return str
 
 conversions.append (((2, 7, 6), conv,
                     '''Performer_group_performer -> Performer_group, Engraver_group_engraver -> Engraver_group
@@ -2556,11 +2559,11 @@ inside-slur -> avoid-slur'''))
 
 
 def conv (str):
-       str = re.sub(r'\\applyoutput', r'\\applyOutput', str)
-       str = re.sub(r'\\applycontext', r'\\applyContext', str)
-       str = re.sub(r'\\applymusic',  r'\\applyMusic', str)
-       str = re.sub(r'ly:grob-suicide', 'ly:grob-suicide!', str)
-       return str
+    str = re.sub(r'\\applyoutput', r'\\applyOutput', str)
+    str = re.sub(r'\\applycontext', r'\\applyContext', str)
+    str = re.sub(r'\\applymusic',  r'\\applyMusic', str)
+    str = re.sub(r'ly:grob-suicide', 'ly:grob-suicide!', str)
+    return str
 
 conversions.append (((2, 7, 10), conv,
                     '''\\applyxxx -> \\applyXxx'''))
@@ -2568,48 +2571,48 @@ conversions.append (((2, 7, 10), conv,
 
 
 def conv (str):
-       str = re.sub(r'\"tabloid\"', '"11x17"', str)
-       return str
+    str = re.sub(r'\"tabloid\"', '"11x17"', str)
+    return str
 
 conversions.append (((2, 7, 11), conv,
                     '''\"tabloid\" -> \"11x17\"'''))
 
 def conv (str):
-       str = re.sub(r'outputProperty' , 'overrideProperty', str)
-       return str
+    str = re.sub(r'outputProperty' , 'overrideProperty', str)
+    return str
 
 conversions.append (((2, 7, 12), conv,
                     '''outputProperty -> overrideProperty'''))
 
 
 def conv (str):
-       def subber (match):
-               newkey = {'spacing-procedure': 'springs-and-rods',
-                         'after-line-breaking-callback' : 'after-line-breaking',
-                         'before-line-breaking-callback' : 'before-line-breaking',
-                         'print-function' : 'stencil'} [match.group(3)]
-               what = match.group (1)
-               grob = match.group (2)
+    def subber (match):
+       newkey = {'spacing-procedure': 'springs-and-rods',
+                 'after-line-breaking-callback' : 'after-line-breaking',
+                 'before-line-breaking-callback' : 'before-line-breaking',
+                 'print-function' : 'stencil'} [match.group(3)]
+       what = match.group (1)
+       grob = match.group (2)
 
-               if what == 'revert':
-                       return "revert %s #'callbacks %% %s\n" % (grob, newkey)
-               elif what == 'override':
-                       return "override %s #'callbacks #'%s" % (grob, newkey)
-               else:
-                       raise 'urg'
-                       return ''
-               
-       str = re.sub(r"(override|revert)\s*([a-zA-Z.]+)\s*#'(spacing-procedure|after-line-breaking-callback"
-                   + r"|before-line-breaking-callback|print-function)",
-                   subber, str)
-
-       if re.search ('bar-size-procedure', str):
-               error_file.write (NOT_SMART % "bar-size-procedure")
-       if re.search ('space-function', str):
-               error_file.write (NOT_SMART % "space-function")
-       if re.search ('verticalAlignmentChildCallback', str):
-               error_file.write ('verticalAlignmentChildCallback has been deprecated') 
-       return str
+       if what == 'revert':
+           return "revert %s #'callbacks %% %s\n" % (grob, newkey)
+       elif what == 'override':
+           return "override %s #'callbacks #'%s" % (grob, newkey)
+       else:
+           raise 'urg'
+           return ''
+
+    str = re.sub(r"(override|revert)\s*([a-zA-Z.]+)\s*#'(spacing-procedure|after-line-breaking-callback"
+               + r"|before-line-breaking-callback|print-function)",
+               subber, str)
+
+    if re.search ('bar-size-procedure', str):
+       error_file.write (NOT_SMART % "bar-size-procedure")
+    if re.search ('space-function', str):
+       error_file.write (NOT_SMART % "space-function")
+    if re.search ('verticalAlignmentChildCallback', str):
+       error_file.write ('verticalAlignmentChildCallback has been deprecated') 
+    return str
 
 conversions.append (((2, 7, 13), conv,
                     '''layout engine refactoring. [FIXME] '''))
@@ -2617,154 +2620,152 @@ conversions.append (((2, 7, 13), conv,
 
 
 def conv (str):
-       str = re.sub (r"\\override +([A-Z.a-z]+) #'callbacks",
-                     r"\\override \1", str)
-       str = re.sub (r"\\revert ([A-Z.a-z]+) #'callbacks % ([a-zA-Z]+)",
-                     r"\\revert \1 #'\2", str)
-       str = re.sub (r"([XY]-extent)-callback", r'\1', str)
-       str = re.sub (r"RemoveEmptyVerticalGroup", "VerticalAxisGroup", str)
-       str = re.sub (r"\\set ([a-zA-Z]*\.?)minimumVerticalExtent",
-                     r"\\override \1VerticalAxisGroup #'minimum-Y-extent",
-                     str)
-       str = re.sub (r"minimumVerticalExtent",
-                     r"\\override VerticalAxisGroup #'minimum-Y-extent",
-                     str)
-       
-       return str
+    str = re.sub (r"\\override +([A-Z.a-z]+) #'callbacks",
+                 r"\\override \1", str)
+    str = re.sub (r"\\revert ([A-Z.a-z]+) #'callbacks % ([a-zA-Z]+)",
+                 r"\\revert \1 #'\2", str)
+    str = re.sub (r"([XY]-extent)-callback", r'\1', str)
+    str = re.sub (r"RemoveEmptyVerticalGroup", "VerticalAxisGroup", str)
+    str = re.sub (r"\\set ([a-zA-Z]*\.?)minimumVerticalExtent",
+                 r"\\override \1VerticalAxisGroup #'minimum-Y-extent",
+                 str)
+    str = re.sub (r"minimumVerticalExtent",
+                 r"\\override VerticalAxisGroup #'minimum-Y-extent",
+                 str)
+
+    return str
 
 conversions.append (((2, 7, 14), conv,
                     '''Remove callbacks property, deprecate XY-extent-callback. '''))
 
 
 def conv (str):
-       if re.search ('[XY]-offset-callbacks', str):
-               error_file.write (NOT_SMART % "[XY]-offset-callbacks")
-       if re.search ('position-callbacks', str):
-               error_file.write (NOT_SMART % "position-callbacks")
-       return str
+    if re.search ('[XY]-offset-callbacks', str):
+       error_file.write (NOT_SMART % "[XY]-offset-callbacks")
+    if re.search ('position-callbacks', str):
+       error_file.write (NOT_SMART % "position-callbacks")
+    return str
 
 conversions.append (((2, 7, 15), conv,
                     '''Use grob closures iso. XY-offset-callbacks.'''))
 
 
 def conv (str):
-       def sub_syms (m):
-               syms =  m.group (1).split ()
-               tags = ["\\tag #'%s" % s for s in syms]
-               return ' '.join (tags)
-               
-       str = re.sub (r"\\tag #'\(([^)]+)\)",  sub_syms, str)
-       return str
+    def sub_syms (m):
+       syms =  m.group (1).split ()
+       tags = ["\\tag #'%s" % s for s in syms]
+       return ' '.join (tags)
+
+    str = re.sub (r"\\tag #'\(([^)]+)\)",  sub_syms, str)
+    return str
 
 conversions.append (((2, 7, 22), conv,
                     """\tag #'(a b) -> \tag #'a \tag #'b""" ))
 
 def conv (str):
-       str = re.sub (r"#'number-visibility",
-                     "#'number-visibility % number-visibility is deprecated. Tune the TupletNumber instead\n",
-                     str)
-       return str
+    str = re.sub (r"#'number-visibility",
+                 "#'number-visibility % number-visibility is deprecated. Tune the TupletNumber instead\n",
+                 str)
+    return str
 
 conversions.append (((2, 7, 24), conv,
                     """deprecate number-visibility""")) 
 
 def conv (str):
-       str = re.sub (r"ly:spanner-get-bound", "ly:spanner-bound", str)
-       return str
+    str = re.sub (r"ly:spanner-get-bound", "ly:spanner-bound", str)
+    return str
 
 conversions.append (((2, 7, 28), conv,
                     """ly:spanner-get-bound -> ly:spanner-bound"""))
 
 def conv (str):
-       for a in ['beamed-lengths', 'beamed-minimum-free-lengths',
-                 'beamed-extreme-minimum-free-lengths']:
-               str = re.sub (r"\\override\s+Stem\s+#'%s" % a,
-                             r"\\override Stem #'details #'%s" % a,
-                             str)
-       return str
+    for a in ['beamed-lengths', 'beamed-minimum-free-lengths',
+             'beamed-extreme-minimum-free-lengths']:
+       str = re.sub (r"\\override\s+Stem\s+#'%s" % a,
+                     r"\\override Stem #'details #'%s" % a,
+                     str)
+    return str
 
 conversions.append (((2, 7, 29), conv,
                     """override Stem #'beamed-* -> #'details #'beamed-*"""))
 
 def conv (str):
-       str = re.sub (r'\epsfile *#"', r'\epsfile #X #10 #"', str)
-       return str
+    str = re.sub (r'\epsfile *#"', r'\epsfile #X #10 #"', str)
+    return str
 
 conversions.append (((2, 7, 30), conv,
                     """\\epsfile"""))
 
 
 def conv (str):
-       def sub_cxx_id (m):
-               str = m.group(1)
-               return 'ly:' + str.lower ().replace ('_','-')
-               
-       str = re.sub (r'([A-Z][a-z_0-9]+::[a-z_0-9]+)',
-                     sub_cxx_id, str)
-       return str
+    def sub_cxx_id (m):
+       str = m.group(1)
+       return 'ly:' + str.lower ().replace ('_','-')
+
+    str = re.sub (r'([A-Z][a-z_0-9]+::[a-z_0-9]+)',
+                 sub_cxx_id, str)
+    return str
 
 conversions.append (((2, 7, 31), conv,
                     """Foo_bar::bla_bla -> ly:foo-bar::bla-bla"""))
 
 
 def conv (str):
-       identifier_subs = [
-               ('inputencoding', 'input-encoding'),
-               ('printpagenumber', 'print-page-number'),
-               ('outputscale', 'output-scale'),
-               ('betweensystemspace', 'between-system-space'),
-               ('betweensystempadding', 'between-system-padding'),
-               ('pagetopspace', 'page-top-space'),
-               ('raggedlastbottom', 'ragged-last-bottom'),
-               ('raggedright', 'ragged-right'),
-               ('raggedlast', 'ragged-last'),
-               ('raggedbottom', 'ragged-bottom'),
-               ('aftertitlespace', 'after-title-space'),
-               ('beforetitlespace', 'before-title-space'),
-               ('betweentitlespace', 'between-title-space'),
-               ('topmargin', 'top-margin'),
-               ('bottommargin', 'bottom-margin'),
-               ('headsep', 'head-separation'),
-               ('footsep', 'foot-separation'),
-               ('rightmargin', 'right-margin'),
-               ('leftmargin', 'left-margin'),
-               ('printfirstpagenumber', 'print-first-page-number'),
-               ('firstpagenumber', 'first-page-number'),
-               ('hsize', 'paper-width'),
-               ('vsize', 'paper-height'),
-               ('horizontalshift', 'horizontal-shift'),
-               ('staffspace', 'staff-space'),
-               ('linethickness', 'line-thickness'),
-               ('ledgerlinethickness', 'ledger-line-thickness'),
-               ('blotdiameter', 'blot-diameter'),
-               ('staffheight', 'staff-height'),
-               ('linewidth', 'line-width'),
-               ('annotatespacing', 'annotate-spacing')
-               ]
-       
-       for (a,b)  in identifier_subs:
-               ### for C++:
-               ## str = re.sub ('"%s"' % a, '"%s"' b, str)
-               
-               str = re.sub (a, b, str)
-       return str
+    identifier_subs = [
+           ('inputencoding', 'input-encoding'),
+           ('printpagenumber', 'print-page-number'),
+           ('outputscale', 'output-scale'),
+           ('betweensystemspace', 'between-system-space'),
+           ('betweensystempadding', 'between-system-padding'),
+           ('pagetopspace', 'page-top-space'),
+           ('raggedlastbottom', 'ragged-last-bottom'),
+           ('raggedright', 'ragged-right'),
+           ('raggedlast', 'ragged-last'),
+           ('raggedbottom', 'ragged-bottom'),
+           ('aftertitlespace', 'after-title-space'),
+           ('beforetitlespace', 'before-title-space'),
+           ('betweentitlespace', 'between-title-space'),
+           ('topmargin', 'top-margin'),
+           ('bottommargin', 'bottom-margin'),
+           ('headsep', 'head-separation'),
+           ('footsep', 'foot-separation'),
+           ('rightmargin', 'right-margin'),
+           ('leftmargin', 'left-margin'),
+           ('printfirstpagenumber', 'print-first-page-number'),
+           ('firstpagenumber', 'first-page-number'),
+           ('hsize', 'paper-width'),
+           ('vsize', 'paper-height'),
+           ('horizontalshift', 'horizontal-shift'),
+           ('staffspace', 'staff-space'),
+           ('linethickness', 'line-thickness'),
+           ('ledgerlinethickness', 'ledger-line-thickness'),
+           ('blotdiameter', 'blot-diameter'),
+           ('staffheight', 'staff-height'),
+           ('linewidth', 'line-width'),
+           ('annotatespacing', 'annotate-spacing')
+           ]
+
+    for (a,b)  in identifier_subs:
+       ### for C++:
+       ## str = re.sub ('"%s"' % a, '"%s"' b, str)
+
+       str = re.sub (a, b, str)
+    return str
 
 conversions.append (((2, 7, 32), conv,
                     """foobar -> foo-bar for \paper, \layout"""))
 
 def conv (str):
-       str = re.sub ('debug-beam-quanting', 'debug-beam-scoring', str)
-       return str
+    str = re.sub ('debug-beam-quanting', 'debug-beam-scoring', str)
+    return str
 
 conversions.append (((2, 7, 32), conv,
                     """debug-beam-quanting -> debug-beam-scoring"""))
 
-
-
 def conv (str):
-       str = re.sub ('def-music-function', 'define-music-function', str)
-       str = re.sub ('def-markup-command', 'define-markup-command', str)
-       return str
+    str = re.sub ('def-music-function', 'define-music-function', str)
+    str = re.sub ('def-markup-command', 'define-markup-command', str)
+    return str
 
 conversions.append (((2, 7, 36), conv,
                    """def-(music-function|markup-command) -> define-(music-function|markup-command)"""))
@@ -2772,11 +2773,11 @@ conversions.append (((2, 7, 36), conv,
 
 
 def conv (str):
-       str = re.sub (r'\\set\s+Score\s*\.\s*barNumberAlignSymbol\s*=',
-                     r"\\override Score.BarNumber #'break-align-symbol = ", str)
-       str = re.sub (r'\\set\s*Score\s*\.\s*rehearsalMarkAlignSymbol\s*=',
-                     r"\\override Score.RehearsalMark #'break-align-symbol = ", str)
-       return str
+    str = re.sub (r'\\set\s+Score\s*\.\s*barNumberAlignSymbol\s*=',
+                 r"\\override Score.BarNumber #'break-align-symbol = ", str)
+    str = re.sub (r'\\set\s*Score\s*\.\s*rehearsalMarkAlignSymbol\s*=',
+                 r"\\override Score.RehearsalMark #'break-align-symbol = ", str)
+    return str
 
 conversions.append (((2, 7, 40), conv,
                    "rehearsalMarkAlignSymbol/barNumberAlignSymbol -> break-align-symbol"))
index 1233921be8b8c1c3b65325256d864abbb09bfd0c..fa73a9961d0e0610b477464de47a32ef45492b16 100644 (file)
@@ -1,4 +1,5 @@
 import re
+
 import getopt
 import sys
 import os
@@ -10,106 +11,106 @@ end_font_regex = re.compile ('%%EndFont')
 verbose = 0
 
 try:
-       import gettext
-       gettext.bindtextdomain ('lilypond', localedir)
-       gettext.textdomain ('lilypond')
-       _ = gettext.gettext
+    import gettext
+    gettext.bindtextdomain ('lilypond', localedir)
+    gettext.textdomain ('lilypond')
+    _ = gettext.gettext
 except:
-       def _ (s):
-               return s
-       
+    def _ (s):
+       return s
+
 def scan_files (files):
-       file_of_font_dict = {}
-       for f in files:
-               if verbose:
-                       sys.stderr.write (_('Scanning %s') % f + '\n')
-               
-               header = open (f, 'r').read ()
-               idx = 0
-
-               extract_from_this = []
-               while idx < len (header):
-                       match = dsr_font_regex.search (header[idx:])
-                       if not match:
-                               break
-                       name = match.group (1)
-                       idx += match.end (1)
-                       if file_of_font_dict.has_key (name):
-                               continue
-
-                       file_of_font_dict[name] = f
-
-       return file_of_font_dict
+    file_of_font_dict = {}
+    for f in files:
+       if verbose:
+           sys.stderr.write (_('Scanning %s') % f + '\n')
+
+       header = open (f, 'r').read ()
+       idx = 0
+
+       extract_from_this = []
+       while idx < len (header):
+           match = dsr_font_regex.search (header[idx:])
+           if not match:
+               break
+           name = match.group (1)
+           idx += match.end (1)
+           if file_of_font_dict.has_key (name):
+               continue
+
+           file_of_font_dict[name] = f
+
+    return file_of_font_dict
 
 def get_file_fonts_dict (file_of_font_dict):
-       dict = {}
-       for (n, f) in file_of_font_dict.items ():
-               if not dict.has_key (f):
-                       dict[f] = []
+    dict = {}
+    for (n, f) in file_of_font_dict.items ():
+       if not dict.has_key (f):
+           dict[f] = []
+
+       dict[f].append (n)
 
-               dict[f].append (n)
-               
-       return dict
+    return dict
 
 def extract_fonts_from_file (extract_from_this, font_dict, filename):
-       if extract_from_this:
+    if extract_from_this:
+       curr_font = []
+       curr_font_name = []
+       in_font = 0
+       for l in open (filename).readlines ():
+           if not in_font and begin_font_regex.match (l):
+               in_font = 1
+               curr_font_name = begin_font_regex.match (l).group (1)
                curr_font = []
-               curr_font_name = []
+           elif in_font and end_font_regex.match (l):
                in_font = 0
-               for l in open (filename).readlines ():
-                       if not in_font and begin_font_regex.match (l):
-                               in_font = 1
-                               curr_font_name = begin_font_regex.match (l).group (1)
-                               curr_font = []
-                       elif in_font and end_font_regex.match (l):
-                               in_font = 0
-
-                               if curr_font_name in extract_from_this:
-                                       font_dict[curr_font_name] = string.join (curr_font, '')
-                                       if verbose:
-                                               sys.stderr.write (_('Extracted %s')
-                                                                 % curr_font_name + '\n')
-
-                                       extract_from_this.remove (curr_font_name)
-                       elif in_font:
-                               curr_font.append (l)
-                       if not extract_from_this:
-                               break
-
-               if extract_from_this:
-                       sys.stderr.write ("Failed to extract %s from %s\n"
-                                         % (string.join (extract_from_this, ', '), filename))
+
+               if curr_font_name in extract_from_this:
+                   font_dict[curr_font_name] = string.join (curr_font, '')
+                   if verbose:
+                       sys.stderr.write (_('Extracted %s')
+                                         % curr_font_name + '\n')
+
+                   extract_from_this.remove (curr_font_name)
+           elif in_font:
+               curr_font.append (l)
+           if not extract_from_this:
+               break
+
+       if extract_from_this:
+           sys.stderr.write ("Failed to extract %s from %s\n"
+                             % (string.join (extract_from_this, ', '), filename))
 
 def write_extracted_fonts (output_file_name, font_dict):
-       if verbose:
-               sys.stderr.write( _('Writing fonts to %s') % output_file_name + '\n')
-       output = open (output_file_name, 'w')
-       output.write ('''%!PS-Adobe-3.0
+    if verbose:
+       sys.stderr.write( _('Writing fonts to %s') % output_file_name + '\n')
+    output = open (output_file_name, 'w')
+    output.write ('''%!PS-Adobe-3.0
 %%VMusage: 0 0 
 %%Creator: lilypond-extract-fonts
 ''')
 
-       for x in font_dict.keys ():
-               output.write ('%%%%DocumentSuppliedResources: font %s\n' % x)
+    for x in font_dict.keys ():
+       output.write ('%%%%DocumentSuppliedResources: font %s\n' % x)
 
-       output.write ('''%%EndComments\n''')
+    output.write ('''%%EndComments\n''')
 
-       for (k,v) in font_dict.items ():
-               output.write ('\n%%%%BeginFont: %s\n' % k)
-               output.write (v)
-               output.write ('\n%%EndFont')
+    for (k,v) in font_dict.items ():
+       output.write ('\n%%%%BeginFont: %s\n' % k)
+       output.write (v)
+       output.write ('\n%%EndFont')
 
 
 def extract_fonts (output_file_name, input_files):
-       d = scan_files (input_files)
-       ff = get_file_fonts_dict (d)
-       
-       font_dict = {}
-       for (file, fonts) in ff.items ():
-               extract_fonts_from_file (fonts, font_dict, file)
+    d = scan_files (input_files)
+    ff = get_file_fonts_dict (d)
+
+    font_dict = {}
+    for (file, fonts) in ff.items ():
+       extract_fonts_from_file (fonts, font_dict, file)
 
-       write_extracted_fonts (output_file_name, font_dict)
+    write_extracted_fonts (output_file_name, font_dict)
 
 
 if __name__ == '__main__':
-       extract_fonts ('fonts.ps', sys.argv[1:])
+    extract_fonts ('fonts.ps', sys.argv[1:])
index 5ce5b298480c31456a12f2d17fa1f598a62461e9..10bddbb6f71167253fbcd6d43d25d0800ac28086 100644 (file)
@@ -1,4 +1,4 @@
-################################################################
+###############################################################
 # lilylib.py -- options and stuff
 # 
 # source file of the GNU LilyPond music typesetter
@@ -19,10 +19,10 @@ import subprocess
 ## windows mingw cross compile doesn't have selectmodule.so
 have_fcntl = True
 try:
-       import fcntl
+    import fcntl
 except ImportError:
-       have_fcntl = False
-       
+    have_fcntl = False
+
 ################################################################
 # Users of python modules should include this snippet
 # and customize variables below.
@@ -37,11 +37,11 @@ except ImportError:
 
 datadir = '@local_lilypond_datadir@'
 if not os.path.isdir (datadir):
-       datadir = '@lilypond_datadir@'
+    datadir = '@lilypond_datadir@'
 if os.environ.has_key ('LILYPONDPREFIX') :
-       datadir = os.environ['LILYPONDPREFIX']
-       while datadir[-1] == os.sep:
-               datadir= datadir[:-1]
+    datadir = os.environ['LILYPONDPREFIX']
+    while datadir[-1] == os.sep:
+       datadir= datadir[:-1]
 
 sys.path.insert (0, os.path.join (datadir, 'python'))
 
@@ -50,124 +50,124 @@ sys.path.insert (0, os.path.join (datadir, 'python'))
 
 localedir = '@localedir@'
 try:
-       import gettext
-       gettext.bindtextdomain ('lilypond', localedir)
-       gettext.textdomain ('lilypond')
-       _ = gettext.gettext
+    import gettext
+    gettext.bindtextdomain ('lilypond', localedir)
+    gettext.textdomain ('lilypond')
+    _ = gettext.gettext
 except:
-       def _ (s):
-               return s
+    def _ (s):
+       return s
 underscore = _
 progress = sys.stderr.write 
 
 
 def command_name (cmd):
-       # Strip all stuf after command,
-       # deal with "((latex ) >& 1 ) .." too
-       cmd = re.match ('([\(\)]*)([^\\\ ]*)', cmd).group (2)
-       return os.path.basename (cmd)
+    # Strip all stuf after command,
+    # deal with "((latex ) >& 1 ) .." too
+    cmd = re.match ('([\(\)]*)([^\\\ ]*)', cmd).group (2)
+    return os.path.basename (cmd)
 
 def system (cmd,
              ignore_error=False,
              progress_p=True,
              be_verbose=False,
              log_file=None):
-       
-       show_progress= progress_p 
-       name = command_name (cmd)
-       error_log_file = ''
-
-       if be_verbose:
-               show_progress = 1
-               progress (_ ("Invoking `%s\'") % cmd)
-       else:
-               progress ( _("Running %s...") % name)
 
+    show_progress= progress_p 
+    name = command_name (cmd)
+    error_log_file = ''
 
-       stdout_setting = None
-       if not show_progress:
-               stdout_setting = subprocess.PIPE
-               
-       proc = subprocess.Popen (cmd,
-                                shell=True,
-                                universal_newlines=True,
-                                stdout=stdout_setting,
-                                stderr=stdout_setting)
+    if be_verbose:
+       show_progress = 1
+       progress (_ ("Invoking `%s\'") % cmd)
+    else:
+       progress ( _("Running %s...") % name)
 
-       log = ''
 
-       if show_progress:
-               retval = proc.wait()
-       else:
-               log = proc.communicate ()
-               retval = proc.returncode
+    stdout_setting = None
+    if not show_progress:
+       stdout_setting = subprocess.PIPE
+
+    proc = subprocess.Popen (cmd,
+                            shell=True,
+                            universal_newlines=True,
+                            stdout=stdout_setting,
+                            stderr=stdout_setting)
 
+    log = ''
 
-       if retval:
-               print >>sys.stderr, 'command failed:', cmd
-               if retval < 0:
-                   print >>sys.stderr, "Child was terminated by signal", -retval
-               elif retval > 0:
-                   print >>sys.stderr, "Child returned", retval
+    if show_progress:
+       retval = proc.wait()
+    else:
+       log = proc.communicate ()
+       retval = proc.returncode
 
-               if ignore_error:
-                       print >>sys.stderr, "Error ignored"
-               else:
-                       if not show_progress:
-                               print log[0]
-                               print log[1]
-                       sys.exit (1)
 
-       return abs (retval)
+    if retval:
+       print >>sys.stderr, 'command failed:', cmd
+       if retval < 0:
+           print >>sys.stderr, "Child was terminated by signal", -retval
+       elif retval > 0:
+           print >>sys.stderr, "Child returned", retval
+
+       if ignore_error:
+           print >>sys.stderr, "Error ignored"
+       else:
+           if not show_progress:
+               print log[0]
+               print log[1]
+           sys.exit (1)
+
+    return abs (retval)
 
 def strip_extension (f, ext):
-       (p, e) = os.path.splitext (f)
-       if e == ext:
-               e = ''
-       return p + e
+    (p, e) = os.path.splitext (f)
+    if e == ext:
+       e = ''
+    return p + e
 
 
 def search_exe_path (name):
-       p = os.environ['PATH']
-       exe_paths = string.split (p, ':')
-       for e in exe_paths:
-               full = os.path.join (e, name)
-               if os.path.exists (full):
-                       return full
-       return None
+    p = os.environ['PATH']
+    exe_paths = string.split (p, ':')
+    for e in exe_paths:
+       full = os.path.join (e, name)
+       if os.path.exists (full):
+           return full
+    return None
 
 
 def print_environment ():
-       for (k,v) in os.environ.items ():
-               sys.stderr.write ("%s=\"%s\"\n" % (k, v)) 
+    for (k,v) in os.environ.items ():
+       sys.stderr.write ("%s=\"%s\"\n" % (k, v)) 
 
 
 class NonDentedHeadingFormatter (optparse.IndentedHelpFormatter):
     def format_heading(self, heading):
-           if heading:
-                   return heading[0].upper() + heading[1:] + ':\n'
-           return ''
+       if heading:
+           return heading[0].upper() + heading[1:] + ':\n'
+       return ''
     def format_option_strings(self, option):
-           sep = ' '
-           if option._short_opts and option._long_opts:
-                   sep = ','
+       sep = ' '
+       if option._short_opts and option._long_opts:
+           sep = ','
 
-           metavar = ''
-           if option.takes_value():
-                   metavar = '=%s' % option.metavar or option.dest.upper()
+       metavar = ''
+       if option.takes_value():
+           metavar = '=%s' % option.metavar or option.dest.upper()
 
-           return "%3s%s %s%s" % (" ".join (option._short_opts),
-                                  sep,
-                                  " ".join (option._long_opts),
-                                  metavar)
+       return "%3s%s %s%s" % (" ".join (option._short_opts),
+                              sep,
+                              " ".join (option._long_opts),
+                              metavar)
 
     def format_usage(self, usage):
         return _("Usage: %s\n") % usage
-    
+
     def format_description(self, description):
-           return description
+       return description
 
 def get_option_parser (*args, **kwargs): 
-       p = optparse.OptionParser (*args, **kwargs)
-       p.formatter = NonDentedHeadingFormatter () 
-       return p
+    p = optparse.OptionParser (*args, **kwargs)
+    p.formatter = NonDentedHeadingFormatter () 
+    return p