]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.22
authorfred <fred>
Sun, 24 Mar 2002 19:27:41 +0000 (19:27 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:27:41 +0000 (19:27 +0000)
README
Sources.make
src/warn.cc

diff --git a/README b/README
index 9b08b5b1e38e7add12ad2efe29e4c8b0a11ecbd1..414facda003d3666a7ea8f290725eaf9547b8ac5 100644 (file)
--- a/README
+++ b/README
@@ -4,4 +4,16 @@ To generate the pretty-printed docs, do this:
 
        make doc
 
-in the top-level dir
\ No newline at end of file
+in the top-level dir
+
+
+======================
+
+NOTE:
+
+LilyPond is a long way from finished and polished. I do appreciate
+criticism, comments, bugreports, patches, etc. Please send e-mail to
+
+       hanwen@stack.urc.tue.nl
+
+Have fun!
\ No newline at end of file
index f274a9ebcd227a86b493f979345ee73493917d76..0be964c269eb5e309252ba96fe578daea28ab1f9 100644 (file)
@@ -22,33 +22,21 @@ hdr=    qlp.hh linespace.hh qlpsolve.hh\
        staffelem.hh idealspacing.hh break.hh\
        scriptdef.hh script.hh textdef.hh textitem.hh
 
-mycc=   qlp.cc qlpsolve.cc leastsquares.cc\
-       inputcommands.cc inputmusic.cc  \
-       inputscore.cc inputstaff.cc inputcommand.cc\
-       timedescription.cc\
-       break.cc linespace.cc molecule.cc staffline.cc\
-       pscore.cc tex.cc item.cc pcol.cc staff.cc \
-       rhythmstaff.cc  score.cc note.cc  main.cc misc.cc\
-       symbol.cc request.cc notename.cc  voice.cc\
-       keyword.cc linestaff.cc table.cc command.cc\
-       warn.cc debug.cc symtable.cc boxes.cc\
-       pstaff.cc  tstream.cc\
-       calcideal.cc scores.cc  \
-       dimen.cc paper.cc lookup.cc staffcommands.cc\
-       sccol.cc stcol.cc getcommands.cc simplestaff.cc\
-       melodicstaff.cc simpleprint.cc\
-       spanner.cc textspanner.cc directionalspanner.cc \
-       notehead.cc  stem.cc \
-       rest.cc bar.cc meter.cc keyitem.cc localkeyitem.cc clefitem.cc\
-       swalker.cc scoreline.cc\
-       simplewalker.cc scriptdef.cc script.cc\
-       texbeam.cc texslur.cc clef.cc key.cc slur.cc beam.cc\
-       idealspacing.cc  grouping.cc identifier.cc\
-       lexerinit.cc mylexer.cc textdef.cc textitem.cc\
-       staffelem.cc wordwrap.cc\
+mycc=bar.cc beam.cc boxes.cc break.cc calcideal.cc clef.cc\
+       clefitem.cc command.cc debug.cc dimen.cc directionalspanner.cc\
+       getcommands.cc grouping.cc idealspacing.cc identifier.cc\
+       inputcommand.cc inputcommands.cc inputmusic.cc inputscore.cc\
+       inputstaff.cc item.cc key.cc keyitem.cc keyword.cc\
+       leastsquares.cc lexerinit.cc linespace.cc linestaff.cc\
+       localkeyitem.cc lookup.cc main.cc melodicstaff.cc meter.cc\
+       misc.cc molecule.cc mylexer.cc note.cc notehead.cc notename.cc\
+       paper.cc pcol.cc pscore.cc pstaff.cc qlp.cc qlpsolve.cc\
+       request.cc rest.cc rhythmstaff.cc sccol.cc score.cc\
+       scoreline.cc scores.cc script.cc scriptdef.cc simpleprint.cc\
+       simplestaff.cc simplewalker.cc slur.cc spanner.cc staff.cc\
+       staffcommands.cc staffelem.cc staffline.cc stcol.cc stem.cc\
+       swalker.cc symbol.cc symtable.cc table.cc tex.cc texbeam.cc\
+       texslur.cc textdef.cc textitem.cc textspanner.cc\
+       timedescription.cc tstream.cc voice.cc warn.cc wordwrap.cc\
        template1.cc template2.cc template3.cc template4.cc\
-       template5.cc\
-       version.cc
-
-
-
+       template5.cc version.cc
\ No newline at end of file
index 230e4bb976a11fe9b79228e460b86487912df35e..0c3cac1186d1d1b3022aa209497fdaa18e7e0b15 100644 (file)
@@ -1,11 +1,10 @@
 #include "debug.hh"
 #include "lexer.hh"
+#include "moment.hh"
 
 ostream &warnout (cerr);
 ostream *mlog(&cerr);
 
-
-
 void
 warning(String s)
 {
@@ -25,9 +24,9 @@ error(String s)
 }
 
 void
-error_t(String s, Real r)
+error_t(const String& s, Moment r)
 {
-    String e=s+ "(t = " + r + ")";
+    String e=s+ "(t = " + String(r) + ")";
     error(e);
     exit(1);
 }