X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finput-smob.cc;h=4d446ab6c014ff5ea320d3d03d91e6420ba2a1d3;hb=5801d8b438473ad68ae74f7dc742bbc8eea887fa;hp=716c41d7137d094f076addc8156d3882ae05ca57;hpb=1c846b2c2348b4e0ca4a3c2e8fb267047ba2d203;p=lilypond.git diff --git a/lily/input-smob.cc b/lily/input-smob.cc index 716c41d713..4d446ab6c0 100644 --- a/lily/input-smob.cc +++ b/lily/input-smob.cc @@ -1,7 +1,7 @@ /* This file is part of LilyPond, the GNU music typesetter. - Copyright (C) 2000--2011 Han-Wen Nienhuys + Copyright (C) 2000--2012 Han-Wen Nienhuys LilyPond is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -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;