]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/parser.yy
* lily/bar-line.cc (compound_barline): add bartype : (dotted).
[lilypond.git] / lily / parser.yy
index aee249d7567cd4a186a4f8e45bc350b36c326c9a..4bcf3b7d5d2c27c5039f0aca999a79c961c46ad1 100644 (file)
@@ -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);