]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/warn.cc
2003 -> 2004
[lilypond.git] / lily / warn.cc
index 3e6b98f9f12d917d2dec6a1de41fe52be160a743..9193017cda6dc267b0458a8868ecb693b6dfaec3 100644 (file)
@@ -1,38 +1,20 @@
 /*
   warn.cc -- implement warning and error messages. Needs cleanup.
 
-  source file of the LilyPond music typesetter
+  source file of the GNU LilyPond music typesetter
 
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
-#include "proto.hh"
-#include "plist.hh"
-#include "debug.hh"
-#include "my-lily-lexer.hh"
-#include "moment.hh"
-#include "time-description.hh"
-#include "source-file.hh"
-#include "source.hh"
-#include "main.hh"
-#include "input.hh"
-
-ostream &warnout (cerr);
-ostream *mlog(&cerr);
-
+#include <stdio.h>
 
+#include "string.hh"
+#include "main.hh"
 
 void
-error_t(String const & s, Moment const & r)
+progress_indication (String s)
 {
-    String t_mom = String(trunc(r)) + String(r - Moment(trunc(r)));
-    String e=s+ " (t = " +  t_mom + ")";
-    error(e);
+ fputs (s.to_str0 (), stderr);
+ fflush (stderr);
 }
 
-void
-error_t(String const & s, Time_description const &t_tdes)
-{
-    String e=s+ " (at t=" + String(t_tdes.bars_i_) + ": " + String(t_tdes.whole_in_measure_) + ")\n";
-    error(e);
-}