]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/warn.cc
release: 0.0.46.jcn1
[lilypond.git] / lily / warn.cc
index 2b9f1db767d265d4a5a2cfcef701e71834aab139..4240aa04b5459a6da8f2b0f6d64c3bd28a8320f8 100644 (file)
@@ -1,3 +1,11 @@
+/*
+  warn.cc -- implement warning and error messages. Needs cleanup.
+
+  source file of the LilyPond music typesetter
+
+  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+*/
+
 #include "proto.hh"
 #include "plist.hh"
 #include "debug.hh"
 #include "source-file.hh"
 #include "source.hh"
 #include "main.hh"
+#include "input.hh"
 
 ostream &warnout (cerr);
 ostream *mlog(&cerr);
-/*
-void
-warning(String s)
-{
-    WARN << s;
-}
-*/
+
 
 void
 error(String s)
@@ -44,7 +47,7 @@ error_t(String const & s, Time_description const &t_tdes)
 void
 message( String message_str, char const* context_ch_C )
 {
-    String str = "";           //"lilypond: ";// GNU format messages!
+    String str = "";
     Source_file* sourcefile_l = source_l_g->sourcefile_l( context_ch_C );
     if ( sourcefile_l ) {
        str += sourcefile_l->file_line_no_str(context_ch_C) + String(": ");
@@ -76,3 +79,16 @@ error( String message_str, char const* context_ch_C )
         lexer->errorlevel_i_ |= 1;*/
 //    exit( 1 );
 }
+
+
+void
+warning(String m)
+{
+    warning(m, (char*)0);
+}
+
+void
+message(String m)
+{
+    error(m, (char*)0);
+}