]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.61
authorfred <fred>
Sun, 24 Mar 2002 19:42:34 +0000 (19:42 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:42:34 +0000 (19:42 +0000)
Documentation/lilypond.pod
lily/note.cc
lily/parser.y

index 1de734b053cdc47d000623450a37a0cf74b36163..2d71f9971f2b39fbc8bfd7acd6d734278f0512db 100644 (file)
@@ -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
index a939391bf3be88fdbb27bad1032c7b0c45bdbfce..6b0062095823c7aca3ce0e10d5235dea1f692cb3 100644 (file)
@@ -49,6 +49,8 @@ get_scriptdef(char c)
        break;
     case  '.' : s = "staccato";
        break;
+    default:
+       assert(false);
     }
     return new String(s);
 }
index 6ece45d55e4012f4bcacbb4cd6b2f30d0b70570d..d92c97012334f4367fa9798e9a646c49fdb903c1 100644 (file)
@@ -1093,7 +1093,7 @@ symboldef:
                delete $2;
        }
        | STRING {
-               Box b;
+               Box b(Interval(0,0), Interval(0,0));
                $$ = new Symbol(*$1, b);
                delete $1;
        }