From 001c6d4741528e0abe01b317ed2bbccfd3b1baea Mon Sep 17 00:00:00 2001 From: Joe Neeman Date: Mon, 22 Jun 2009 14:21:04 +0300 Subject: [PATCH] Fix 782. This was a regression introduced by 0b47e7b3. --- lily/align-interface.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lily/align-interface.cc b/lily/align-interface.cc index cbc9443fc7..36aa81f111 100644 --- a/lily/align-interface.cc +++ b/lily/align-interface.cc @@ -154,7 +154,8 @@ get_skylines (Grob *me, // of the system. This way, the tall treble clefs are only compared with the treble // clefs of the other staff and they will be ignored if the staff above is, for example, // lyrics. - if (Axis_group_interface::has_interface (g)) + if (Axis_group_interface::has_interface (g) + && !Hara_kiri_group_spanner::request_suicide (g, start, end)) { Interval begin_of_line_extent = Axis_group_interface::begin_of_line_pure_height (g, start); if (!begin_of_line_extent.is_empty ()) -- 2.39.2