From: Jan Nieuwenhuizen Date: Tue, 1 Mar 2011 21:44:49 +0000 (+0100) Subject: Nitpick: use present time for error message. X-Git-Tag: release/2.13.53-1~36^2~6 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=d0a03bdae24b589df21f9b78788bbd00aeeba779;p=lilypond.git Nitpick: use present time for error message. --- diff --git a/lily/page-layout-problem.cc b/lily/page-layout-problem.cc index c1cfeb0656..3aebfd4aac 100644 --- a/lily/page-layout-problem.cc +++ b/lily/page-layout-problem.cc @@ -319,10 +319,10 @@ Page_layout_problem::solve_rod_spring_problem (bool ragged) Real overflow = spacer.configuration_length (spacer.force ()) - page_height_; if (ragged && overflow < 1e-6) - warning (_ ("couldn't fit music on page: ragged-spacing was requested, but page was compressed")); + warning (_ ("cannot fit music on page: ragged-spacing was requested, but page was compressed")); else { - warning (_f ("couldn't fit music on page: overflow is %f", + warning (_f ("cannot fit music on page: overflow is %f", overflow)); warning (_ ("compressing music to fit")); vsize space_count = solution_.size ();