From 21c2ac6f921778b02ad264a547154df3a3286a52 Mon Sep 17 00:00:00 2001 From: Han-Wen Nienhuys Date: Sun, 31 Dec 2006 12:21:06 +0100 Subject: [PATCH] thinko. --- lily/spacing-loose-columns.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lily/spacing-loose-columns.cc b/lily/spacing-loose-columns.cc index c32b60639c..069ff0e231 100644 --- a/lily/spacing-loose-columns.cc +++ b/lily/spacing-loose-columns.cc @@ -66,9 +66,10 @@ set_loose_columns (System *which, Column_x_positions const *posns) loose = right = re->get_column (); } - if (!right->get_system () - && right->find_prebroken_piece (LEFT) - && right->find_prebroken_piece (LEFT)->get_system () == which) + if (right->get_system ()) + ; /* do nothing */ + else if (right->find_prebroken_piece (LEFT) + && right->find_prebroken_piece (LEFT)->get_system () == which) right = right->find_prebroken_piece (LEFT); else if (Paper_column::get_rank (which->get_bound (RIGHT)) < Paper_column::get_rank (right)) -- 2.39.5