]> git.donarmstrong.com Git - lilypond.git/commitdiff
(Score): oops. Copy error_found_ too.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Tue, 28 Sep 2004 07:58:52 +0000 (07:58 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Tue, 28 Sep 2004 07:58:52 +0000 (07:58 +0000)
ChangeLog
lily/book.cc
lily/score.cc

index 9243bbfd81276586671bc353c7fa9aff4999df19..68c6b130dc6d75b8e092ab12c61b345ead35ee60 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-09-28  Han-Wen Nienhuys   <hanwen@xs4all.nl>
+
+       * lily/score.cc (Score): oops. Copy error_found_ too.
+
 2004-09-27  Jan Nieuwenhuizen  <janneke@gnu.org>
 
        * stepmake/stepmake/texinfo-rules.make: 
        docu about TextSpanner padding bug from manual to engraver.ly
        (since it's workarounded and hence not user-visible any more)
 
+2004-09-27  Han-Wen Nienhuys   <hanwen@xs4all.nl>
+
+       * VERSION: release 2.3.19
+
 2004-09-26  Graham Percival  <gperlist@shaw.ca>
 
        * ly/property-init.ly: fix bug in displaying ledger lines while
index 6b947a88184867aef1b4990a2cb34b4477d1ee90..6a873251f2ba482abf914c870a150dcaa268fa5d 100644 (file)
@@ -66,7 +66,7 @@ Book::process (String outname, Output_def *default_def)
 {
   bool error = false;
   for (int i = 0; i < scores_.size(); i++)
-    error |= scores_[i]->error_found_;
+    error = error || scores_[i]->error_found_;
 
   if (error)
     return 0;
index 0561664d26bebe8b9bc9743ef18aa65cb4ab4050..b43f44c3322c3ad9650bb51c11d4ce26ed157cc6 100644 (file)
@@ -66,7 +66,8 @@ Score::Score (Score const &s)
   : Input (s)
 {
   music_ = SCM_EOL;
-
+  error_found_ = s.error_found_;
+  
   /* FIXME: SCM_EOL? */
   header_ = 0;