]> git.donarmstrong.com Git - lilypond.git/commitdiff
Rename (c) to (d) to avoid grand-replace problem
authorGraham Percival <graham@percival-music.ca>
Mon, 9 Jan 2012 06:14:30 +0000 (06:14 +0000)
committerGraham Percival <graham@percival-music.ca>
Mon, 9 Jan 2012 06:14:30 +0000 (06:14 +0000)
scripts/etf2ly.py

index 009b49ae95ab8aca7baef420095c0b47e4f2fb5b..5267ef2e847471b126ce018e5bb5c1b4a10d16ec 100644 (file)
@@ -1131,11 +1131,13 @@ class Etf_file:
 
         
         while c and c.number <> endno:
-            thread.append (c)
+            d = c # hack to avoid problem with build/scripts/grand-replace.py
+            thread.append (d)
             c = c.next
 
         if c: 
-            thread.append (c)
+            d = c # hack to avoid problem with build/scripts/grand-replace.py
+            thread.append (d)
         
         return thread