From 3540d37c423ad2202b2016181052820b5148d6b6 Mon Sep 17 00:00:00 2001 From: fred Date: Sun, 24 Mar 2002 19:42:34 +0000 Subject: [PATCH] lilypond-0.0.61 --- Documentation/lilypond.pod | 7 +++++++ lily/note.cc | 2 ++ lily/parser.y | 2 +- 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/Documentation/lilypond.pod b/Documentation/lilypond.pod index 1de734b053..2d71f9971f 100644 --- a/Documentation/lilypond.pod +++ b/Documentation/lilypond.pod @@ -244,6 +244,13 @@ http://www.stack.nl/~hanwen/lilypond/index.html. This webpage contains the MIDI, GIF and PS files for some standard music files. It also has the complete LilyPond documentation +A mailing list for GNU LilyPond has been setup, it's at +lilypond@gnu.ai.mit.edu. To subscribe, send mail to +lilypond-request@gnu.ai.mit.edu. + +For discussions concerning the GNU Music project, +gnu-music-discuss@vanderbilt. .edu + =head1 REMARKS GNU LilyPond has no connection with the music package Rosegarden, other diff --git a/lily/note.cc b/lily/note.cc index a939391bf3..6b00620958 100644 --- a/lily/note.cc +++ b/lily/note.cc @@ -49,6 +49,8 @@ get_scriptdef(char c) break; case '.' : s = "staccato"; break; + default: + assert(false); } return new String(s); } diff --git a/lily/parser.y b/lily/parser.y index 6ece45d55e..d92c970123 100644 --- a/lily/parser.y +++ b/lily/parser.y @@ -1093,7 +1093,7 @@ symboldef: delete $2; } | STRING { - Box b; + Box b(Interval(0,0), Interval(0,0)); $$ = new Symbol(*$1, b); delete $1; } -- 2.39.5