From: Han-Wen Nienhuys Date: Mon, 31 May 2004 10:45:12 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: release/2.2.2~2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=84ecacfb0062dea6911de1db66e7c86c71433a45;p=lilypond.git *** empty log message *** --- diff --git a/lily/context-def.cc b/lily/context-def.cc index a3cefde911..9d88f0d9c5 100644 --- a/lily/context-def.cc +++ b/lily/context-def.cc @@ -270,7 +270,7 @@ filter_performers (SCM l) if (dynamic_cast (unsmob_translator (gh_car (*tail)))) { *tail = gh_cdr (*tail); - if (!ly_c_pair_p (*tail)) + if (!gh_pair_p (*tail)) break ; } } @@ -286,7 +286,7 @@ filter_engravers (SCM l) if (dynamic_cast (unsmob_translator (gh_car (*tail)))) { *tail = gh_cdr (*tail); - if (!ly_c_pair_p (*tail)) + if (!gh_pair_p (*tail)) break ; } }