]> git.donarmstrong.com Git - lilypond.git/commitdiff
(chord_notes): typo.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Wed, 31 Jul 2002 16:51:49 +0000 (16:51 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Wed, 31 Jul 2002 16:51:49 +0000 (16:51 +0000)
ChangeLog
NEWS
lily/parser.yy

index 8774750a65b776db20a9977501a2e0693afbde94..c3102ea96ae0d112238d5869fc1cee20caf4b9c1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2002-07-31  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
 
+       * lily/parser.yy (chord_notes): typo. 
+
        * scm/music-functions.scm (unfold-repeats): bugfix
 
 2002-07-31  Rune Zedeler <rune@zedeler.dk>
diff --git a/NEWS b/NEWS
index ae38e3c7b91f5019f51a6b6c41ba8dbe9e8d773f..9daae5383288986e435e1236fcadf6c157417837 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -21,8 +21,11 @@ now.
 * Better spacing: both globally and locally. It includes subtle
 details like optical stem spacing.
 
-* More ancient notation support: mensural ligatures, porrectuses,
-ambituses, more shapes.
+* More ancient notation support: mensural ligatures,
+more shapes.
+
+* Support for automatically determining and engraving ambitus (pitch
+range) of voices.
 
 * Piano notation: bracket pedals, directed arpeggios, arpeggio
 brackets.
index 19cd1d3216dff81b12bd74d94d1c2b5acc699084..5564083b80e78417b7f8cdb520b53f4d35930aa0 100644 (file)
@@ -1974,7 +1974,7 @@ chord_additions:
 
 chord_notes:
        chord_step {
-               $$ = $1
+               $$ = $1;
        }
        | chord_notes '.' chord_step {
                $$ = gh_append2 ($$, $3);