]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/context-property.cc
Doc-fr: update texidocs markers
[lilypond.git] / lily / context-property.cc
index 11d03c5b0537be35619f173d382fb6cc59aa042b..0c5e1ec55d689850efeeaf7eef209c4d2c4c3f32 100644 (file)
@@ -225,8 +225,7 @@ execute_pushpop_property (Context *context,
 void
 apply_property_operations (Context *tg, SCM pre_init_ops)
 {
-  SCM correct_order = scm_reverse (pre_init_ops);
-  for (SCM s = correct_order; scm_is_pair (s); s = scm_cdr (s))
+  for (SCM s = pre_init_ops; scm_is_pair (s); s = scm_cdr (s))
     {
       SCM entry = scm_car (s);
       SCM type = scm_car (entry);
@@ -248,6 +247,8 @@ apply_property_operations (Context *tg, SCM pre_init_ops)
         }
       else if (type == ly_symbol2scm ("assign"))
         tg->set_property (scm_car (entry), scm_cadr (entry));
+      else if (type == ly_symbol2scm ("apply"))
+       scm_apply_1 (scm_car (entry), tg->self_scm (), scm_cdr (entry));
     }
 }