]> git.donarmstrong.com Git - lilypond.git/commitdiff
Docs building typos and thinkos
authorJohn Mandereau <john.mandereau@gmail.com>
Sun, 27 Apr 2008 15:50:55 +0000 (17:50 +0200)
committerJohn Mandereau <john.mandereau@gmail.com>
Sun, 27 Apr 2008 15:50:55 +0000 (17:50 +0200)
Documentation/de/user/macros.itexi
Documentation/es/user/macros.itexi
Documentation/fr/user/macros.itexi
buildscripts/mutopia-index.py
python/langdefs.py

index b329f977577da80d3cd6b01e919f6212114b8a89..9177b8399caa12a49751435817b197437a641c94 100644 (file)
 
 @c Commands specific to translated docs
 
+@c ugh, cannot set/define global variable 'translationof' in some way?
 @iftex
 @macro translationof{TEXT}
-@tex
-\gdef\translationof{\TEXT\}
-@end tex
 @end macro
 @end iftex
 
 @ifinfo
 @macro
 @macro translationof{TEXT}
-@set translationof{\TEXT\}
+@set translationof \TEXT\
 @end macro
 @end ifinfo
 
index d283bc3357d49ef4cf1d826fb352427936a51921..508870ed618261feaff6698b08d14a2978f13bf7 100644 (file)
 
 @c Commands specific to translated docs
 
+@c ugh, cannot set/define global variable 'translationof' in some way?
 @iftex
 @macro translationof{TEXT}
-@tex
-\gdef\translationof{\TEXT\}
-@end tex
 @end macro
 @end iftex
 
 @ifinfo
 @macro
 @macro translationof{TEXT}
-@set translationof{\TEXT\}
+@set translationof \TEXT\
 @end macro
 @end ifinfo
 
index 480f6fa287d25481a313434c37deeae9883604a9..06f0974a96ef86829203c08a439e4084a6827ae6 100644 (file)
 
 @c Commands specific to translated docs
 
+@c ugh, cannot set/define global variable 'translationof' in some way?
 @iftex
 @macro translationof{TEXT}
-@tex
-\gdef\translationof{\TEXT\}
-@end tex
 @end macro
 @end iftex
 
 @ifinfo
 @macro
 @macro translationof{TEXT}
-@set translationof{\TEXT\}
+@set translationof \TEXT\
 @end macro
 @end ifinfo
 
index c0d4e1fd25cfd2a4e4dc1c7472f7c8ca00e7540b..50e4ebbf29b5b9355694937acbf228dde47fdd1e 100644 (file)
@@ -190,7 +190,7 @@ for d in dirs:
     allfiles += find ('*.ly', d)
 
 allfiles = [f for f in allfiles
-            if not x.endswith ('snippet-map.ly')
+            if not f.endswith ('snippet-map.ly')
             and not re.search ('lily-[0-9a-f]+', f)
             and 'musicxml' not in f]
 
index d3b6a0872df7cbef8a94a25e957ebe2b9bb2501c..37159c519854bbfad079017f4f45ad16fed0bae2 100644 (file)
@@ -44,7 +44,7 @@ french_html_typo_rules = ((' :', '&nbsp;:'),
                           (' !', '<font size="-4">&nbsp;</font>!'))
 
 def french_html_filter (page):
-    m = html_page_body_re.search (page)
+    m = html_body_re.search (page)
     if m:
         body_begin = m.end ()
     else: