]> git.donarmstrong.com Git - lilypond.git/commitdiff
Add exc -> eccentricity rule.
authorGraham Percival <graham@percival-music.ca>
Thu, 14 Jul 2005 00:39:25 +0000 (00:39 +0000)
committerGraham Percival <graham@percival-music.ca>
Thu, 14 Jul 2005 00:39:25 +0000 (00:39 +0000)
ChangeLog
python/convertrules.py
scripts/convert-ly.py

index 49d372ac887406c529d42f7893957f9cf7a8ce4e..44ff14545963c770d7ae17534a058bb0f3990846 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2005-07-13  Graham Percival  <gperlist@shaw.ca>
+
+       * python/convertrules.py: add exc -> ecc rule.
+
+       * scripts/convert-ly.py: add location of convertrules.py
+       in a comment.
+
 2005-07-12  Jan Nieuwenhuizen  <janneke@gnu.org>
 
        * lily/lily-parser-scheme.cc (LY_DEFINE): Guile 1.6 fix.
index 94dd62a7119a93c6c0be73778671b2b1fda137f9..486ecbb2c6ec9d1bcdbff96e581e4e8b2c452354 100644 (file)
@@ -2517,6 +2517,9 @@ def conv (str):
 conversions.append (((2, 7, 0), conv,
                     'ly:parser-define -> ly:parser-define!'))
 
+def conv (str):
+       return re.sub('excentricity', 'eccentricity', str)
+
 ################################################################
 
 def str_to_tuple (s):
index ef18ac1922369f030bee13dd6b4678d81185850a..800c04b5ccb9861351fdb4c4748aca23384b62d8 100644 (file)
@@ -6,6 +6,9 @@
 #
 # (c) 1998--2005  Han-Wen Nienhuys <hanwen@cs.uu.nl>
 #                 Jan Nieuwenhuizen <janneke@gnu.org>
+#
+# converting rules are found in python/convertrules.py
+#
 
 import os
 import sys