]> git.donarmstrong.com Git - lilypond.git/commitdiff
end context snippet with '\n'
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 5 Nov 2006 12:26:46 +0000 (13:26 +0100)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 5 Nov 2006 12:26:46 +0000 (13:26 +0100)
lily/input.cc

index 5ab2be4c7864830cd5d2b6f196c58ec09554f86b..14b281fbb87baadb49e10b2b1032d1a4c776bbaa 100644 (file)
@@ -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);
 }