From: Han-Wen Nienhuys Date: Wed, 15 Nov 2006 16:22:20 +0000 (+0100) Subject: add Hernan. X-Git-Tag: release/2.11.0-1~31 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=09c34ee9cda1c8821673e9d9200f236124257bf6;p=lilypond.git add Hernan. --- diff --git a/THANKS b/THANKS index 0ee3f73030..38623616d3 100644 --- a/THANKS +++ b/THANKS @@ -1,5 +1,5 @@ -Release 2.9 -*********** +Release 2.10 +************ DEVELOPMENT TEAM @@ -67,6 +67,7 @@ David Rogers Francisco Vila Harald Wellmann Henrik Frisk +Hernán J. González Johannes Schindelin John Williams J. Leung diff --git a/lily/score.cc b/lily/score.cc index 3f00330e61..52a48538b8 100644 --- a/lily/score.cc +++ b/lily/score.cc @@ -39,8 +39,10 @@ Score::Score () { header_ = SCM_EOL; music_ = SCM_EOL; - error_found_ = false; input_location_ = SCM_EOL; + + error_found_ = false; + smobify_self (); input_location_ = make_input (Input ()); } @@ -78,8 +80,9 @@ Score::Score (Score const &s) { header_ = SCM_EOL; music_ = SCM_EOL; - error_found_ = s.error_found_; input_location_ = SCM_EOL; + error_found_ = s.error_found_; + smobify_self (); input_location_ = make_input (*s.origin ());