From 1cee315627962cd6307cac34ac19bccc5c75b009 Mon Sep 17 00:00:00 2001 From: Han-Wen Nienhuys Date: Sun, 5 Nov 2006 13:26:46 +0100 Subject: [PATCH] end context snippet with '\n' --- lily/input.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.39.5