X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finput.cc;h=6cc8a182a540bdc29ecfe96d763af0dcf70f42b3;hb=4a401ca1c60f428daa242dbdd102fdb3f327ebfb;hp=cbb609941fb6924d0a0b9cd33e475da78f5b79d9;hpb=1c72394c0ae30ba289f869059ec2532eac8d4015;p=lilypond.git diff --git a/lily/input.cc b/lily/input.cc index cbb609941f..6cc8a182a5 100644 --- a/lily/input.cc +++ b/lily/input.cc @@ -83,23 +83,22 @@ Input::message (string s) const { if (source_file_) s = location_string () + ": " + s + "\n" - + source_file_->quote_input (start_) + "\n"; + + source_file_->quote_input (start_) + "\n"; ::message (s); } - void Input::programming_error (string s) const { if (get_program_option ("warning-as-error")) ::error (s); - else { - message (_f ("programming error: %s", s.c_str ())); - message (_ ("continuing, cross fingers") + "\n"); - } + else + { + message (_f ("programming error: %s", s.c_str ())); + message (_ ("continuing, cross fingers") + "\n"); + } } - void Input::warning (string s) const {