X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finput-smob.cc;h=77a03fd54e7d08cfe499759b0ad3973c61614e4d;hb=0e76acabbb8afddf9e7cb48fde04f02b4e415564;hp=716c41d7137d094f076addc8156d3882ae05ca57;hpb=55ac733b69643a6bc6a83b706c65cb56efd388ef;p=lilypond.git diff --git a/lily/input-smob.cc b/lily/input-smob.cc index 716c41d713..77a03fd54e 100644 --- a/lily/input-smob.cc +++ b/lily/input-smob.cc @@ -59,9 +59,9 @@ equal_smob (SCM sa, SCM sb) { Input *a = (Input *) SCM_CELL_WORD_1 (sa); Input *b = (Input *) SCM_CELL_WORD_1 (sb); - if (a->get_source_file () == b->get_source_file () && - a->start () == b->start () && - a->end () == b->end ()) + if (a->get_source_file () == b->get_source_file () + && a->start () == b->start () + && a->end () == b->end ()) return SCM_BOOL_T; else return SCM_BOOL_F;