X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finput.cc;h=b6378af67f1d1761bfea7a44a29cb1a15da24b5c;hb=5b4b0d6e9a197e8f9eb085b7c2ad78b8be3e5cfc;hp=1379f1c7b579ed76f3937f4c84ae891149668882;hpb=31568c504806f35aac420a394c9eab07abd9faa7;p=lilypond.git diff --git a/lily/input.cc b/lily/input.cc index 1379f1c7b5..b6378af67f 100644 --- a/lily/input.cc +++ b/lily/input.cc @@ -3,7 +3,7 @@ source file of the LilyPond music typesetter - (c) 1997--2006 Han-Wen Nienhuys + (c) 1997--2008 Han-Wen Nienhuys */ #include "input.hh" @@ -13,7 +13,7 @@ using namespace std; #include "international.hh" #include "source-file.hh" -#include "source.hh" +#include "sources.hh" #include "warn.hh" Input::Input (Input const &i) @@ -71,10 +71,19 @@ Input::message (string s) const { if (source_file_) s = location_string () + ": " + s + "\n" - + source_file_->quote_input (start_); + + source_file_->quote_input (start_) + "\n"; ::message (s); } + +void +Input::programming_error (string s) const +{ + message (_f ("programming error: %s", s.c_str ())); + message (_ ("continuing, cross fingers") + "\n"); +} + + void Input::warning (string s) const {