]> git.donarmstrong.com Git - lilypond.git/commitdiff
add Hernan.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Wed, 15 Nov 2006 16:22:20 +0000 (17:22 +0100)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Wed, 15 Nov 2006 16:22:20 +0000 (17:22 +0100)
THANKS
lily/score.cc

diff --git a/THANKS b/THANKS
index 0ee3f730309f33bc50bf02432a46e8e34b206595..38623616d3e9f0a7703e42120e7dcfd69067204a 100644 (file)
--- 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
index 3f00330e61336c875aa3c97d618157468e2befd7..52a48538b8d8d3cf2630bc77fcfbd66b7cc27aea 100644 (file)
@@ -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 ());