X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fparser.yy;h=4bcf3b7d5d2c27c5039f0aca999a79c961c46ad1;hb=dfaedb083a0638e8d6655c60f1a6fc0efd4ce3d2;hp=aee249d7567cd4a186a4f8e45bc350b36c326c9a;hpb=3adcf6c67a62a5f8b15003a5450efc925f23405d;p=lilypond.git diff --git a/lily/parser.yy b/lily/parser.yy index aee249d756..4bcf3b7d5d 100644 --- a/lily/parser.yy +++ b/lily/parser.yy @@ -589,7 +589,7 @@ translator_spec_block: translator_spec_body: /**/ { - $$ = Translator_def::make_scm (); + $$ = Context_def::make_scm (); unsmob_context_def ($$)->set_spot (THIS->here_input ()); } | TRANSLATOR_IDENTIFIER { @@ -597,7 +597,7 @@ translator_spec_body: unsmob_context_def ($$)->set_spot (THIS->here_input ()); } | translator_spec_body GROBDESCRIPTIONS embedded_scm { - Translator_def*td = unsmob_context_def($$); + Context_def*td = unsmob_context_def($$); for (SCM p = $3; gh_pair_p (p); p = ly_cdr (p)) { SCM tag = gh_caar (p);