diff --git a/lily/tie.cc b/lily/tie.cc
index 88d3ee4..227ea3f 100644
--- a/lily/tie.cc
+++ b/lily/tie.cc
@@ -99,20 +99,24 @@ Tie::get_column_rank (Grob *me, Direction d)
 {
   Grob *col = 0;
   Spanner *span = dynamic_cast<Spanner *> (me);
   if (!span)
     col = dynamic_cast<Item *> (me)->get_column ();
   else
     {
+      /*
+        WTF? we don't need this if.  We could just write
+        h = span->get_bound (d)
+        */
       Grob *h = head (me, d);
       if (!h)
         h = span->get_bound (d);

Do you mean that head(me, d) always returns nullptr?

Frédéric

_______________________________________________
lilypond-devel mailing list
lilypond-devel@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-devel

Reply via email to