From: Han-Wen Nienhuys Date: Sun, 14 Mar 2004 13:01:35 +0000 (+0000) Subject: (Context_def): init name to "" X-Git-Tag: release/2.1.31~9 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=9743f44f5940813da340ce200f86a02fb52f622d;p=lilypond.git (Context_def): init name to "" --- diff --git a/ChangeLog b/ChangeLog index 33dffd646c..9f4272908e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2004-03-14 Han-Wen Nienhuys + * lily/context-def.cc (Context_def): init name to "" + * lily/font-interface.cc: add font-encoding property. * scm/lily.scm (chain-assoc-get): bugfix. diff --git a/lily/context-def.cc b/lily/context-def.cc index 89b5536a50..ea09d1578f 100644 --- a/lily/context-def.cc +++ b/lily/context-def.cc @@ -59,6 +59,8 @@ Context_def::Context_def () description_ = SCM_EOL; smobify_self (); + + context_name_ = ly_symbol2scm (""); } Context_def::~Context_def ()