From 241b2f4b58533512744463b462b89439ca0146b0 Mon Sep 17 00:00:00 2001 From: David Kastrup Date: Mon, 31 Dec 2012 14:12:11 +0100 Subject: [PATCH] Issue 3073: Context definitions and context mods ignore \unset --- lily/context-property.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lily/context-property.cc b/lily/context-property.cc index c835a2fb93..00108cf314 100644 --- a/lily/context-property.cc +++ b/lily/context-property.cc @@ -242,6 +242,8 @@ apply_property_operations (Context *tg, SCM pre_init_ops) 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)); + else if (type == ly_symbol2scm ("unset")) + tg->unset_property (scm_car (entry)); } } -- 2.39.5