From: Han-Wen Nienhuys Date: Wed, 31 Jul 2002 16:51:49 +0000 (+0000) Subject: (chord_notes): typo. X-Git-Tag: release/1.5.72~62 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=8477e31df158e5d1557b5e9dc61085849f9389fb;p=lilypond.git (chord_notes): typo. --- diff --git a/ChangeLog b/ChangeLog index 8774750a65..c3102ea96a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2002-07-31 Han-Wen Nienhuys + * lily/parser.yy (chord_notes): typo. + * scm/music-functions.scm (unfold-repeats): bugfix 2002-07-31 Rune Zedeler diff --git a/NEWS b/NEWS index ae38e3c7b9..9daae53832 100644 --- 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. diff --git a/lily/parser.yy b/lily/parser.yy index 19cd1d3216..5564083b80 100644 --- a/lily/parser.yy +++ b/lily/parser.yy @@ -1974,7 +1974,7 @@ chord_additions: chord_notes: chord_step { - $$ = $1 + $$ = $1; } | chord_notes '.' chord_step { $$ = gh_append2 ($$, $3);