From: Han-Wen Nienhuys <hanwen@xs4all.nl> Date: Sun, 5 Nov 2006 12:26:46 +0000 (+0100) Subject: end context snippet with '\n' X-Git-Tag: release/2.10.0-2~32^2~23 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=1cee315627962cd6307cac34ac19bccc5c75b009;p=lilypond.git end context snippet with '\n' --- diff --git a/lily/input.cc b/lily/input.cc index 5ab2be4c78..14b281fbb8 100644 --- a/lily/input.cc +++ b/lily/input.cc @@ -71,7 +71,7 @@ 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); }