]> git.donarmstrong.com Git - lilypond.git/commitdiff
* Documentation/user/basic-notation.itely (Basic polyphony): fix
authorhanwen <hanwen>
Tue, 3 May 2005 12:17:04 +0000 (12:17 +0000)
committerhanwen <hanwen>
Tue, 3 May 2005 12:17:04 +0000 (12:17 +0000)
missing @end

* scripts/lilypond-book.py (write_if_updated): print file name.

* Documentation/user/basic-notation.itely (Explicitly
instantiating voices): idem.

ChangeLog
Documentation/user/basic-notation.itely
Documentation/user/instrument-notation.itely
scripts/lilypond-book.py

index 8e2d08de703ad58a502234229e80c000ee151f19..511a322282cdfbc2f08f1175f7bd17930f1e0ce1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2005-05-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
+       * Documentation/user/basic-notation.itely (Basic polyphony): fix
+       missing @end 
+
+       * scripts/lilypond-book.py (write_if_updated): print file name.
+
        * Documentation/user/basic-notation.itely (Explicitly
        instantiating voices): idem.
 
        is now first in accepts_list_.
 
        * ly/engraver-init.ly (RemoveEmptyRhythmicStaffContext): add
-       \defaultchild to all relevant contexts.  This fixes default voices
-       for \drums { } . Most probably, this also fixes similar problems
-       with ancient transcriptions getting CueVoices instead of the
-       desired voices.
+       \defaultchild to all relevant contexts.  This fixes:
+       drums-pitch.ly.
+
+       (Probably also fixes similar problems with ancient
+       transcriptions getting CueVoices instead of the desired voices.)
  
        * lily/context-def.cc (get_default_child): new function.
        (get_accepted): place default child in front of list.
index e2ff5f3a9aef9e30a65d7504214887cb2f00041a..88f8588a6a008af6ccf42840f22adedd7ea871a3 100644 (file)
@@ -2272,7 +2272,7 @@ to the note immediately preceding it.
 
 @example
 \relative @{ noteA << noteB \\ noteC >> noteD @}
-@example
+@end example
 
 @code{noteC} is relative to @code{noteB}, not @code{noteA};
 @code{noteD} is relative to @code{noteC}, not @code{noteB} or
index ae42159724db082ac38ce2370ed25b006a6715ef..3bff755c9612d89b5aceb7316307a005a75264e5 100644 (file)
@@ -1672,6 +1672,7 @@ for this purpose instead.
 * Tablatures basic::            
 * Non-guitar tablatures::       
 * Fret diagrams::               
+* Other guitar issues::         
 @end menu
 
 @node String number indications
index cd8613a387e7f834d6087408622d7c3cced11dcb..e123e8b6b5f71af85e2e641bbe5d329494a6ea72 100644 (file)
@@ -1355,7 +1355,7 @@ def write_if_updated (file_name, lines):
                oldstr = f.read ()
                new_str = string.join (lines, '')
                if oldstr == new_str:
-                       ly.progress (_ ("%s is up to date."))
+                       ly.progress (_ ("%s is up to date.") % file_name)
                        ly.progress ('\n')
                        return
        except: