X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fscore.cc;h=a1dc267ac14dd82ca3386ec82ed04818d28a9369;hb=5bbfc22fce036b9b69df5e420de93e11da23c05e;hp=84f236864d4b07869eb6aa024c03424a155dab6d;hpb=4bb29573149a0ffa1f881c5e38a0fe68e9e76b67;p=lilypond.git diff --git a/lily/score.cc b/lily/score.cc index 84f236864d..a1dc267ac1 100644 --- a/lily/score.cc +++ b/lily/score.cc @@ -1,7 +1,7 @@ /* This file is part of LilyPond, the GNU music typesetter. - Copyright (C) 1997--2011 Han-Wen Nienhuys + Copyright (C) 1997--2014 Han-Wen Nienhuys LilyPond is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -127,21 +127,19 @@ Score::book_rendering (Output_def *layoutbook, if (error_found_) return SCM_EOL; - SCM scaled_bookdef = SCM_EOL; Real scale = 1.0; if (layoutbook && layoutbook->c_variable ("is-paper") == SCM_BOOL_T) scale = scm_to_double (layoutbook->c_variable ("output-scale")); SCM outputs = SCM_EOL; - SCM *tail = &outputs; int outdef_count = defs_.size (); for (int i = 0; !i || i < outdef_count; i++) { Output_def *def = outdef_count ? defs_[i] : default_def; - SCM scaled = SCM_EOL; + SCM scaled = def->self_scm (); if (def->c_variable ("is-layout") == SCM_BOOL_T) { @@ -152,20 +150,18 @@ Score::book_rendering (Output_def *layoutbook, } /* TODO: fix or junk --no-layout. */ - SCM context = ly_run_translator (music_, def->self_scm ()); - if (dynamic_cast (unsmob_context (context))) + SCM context = ly_run_translator (music_, scaled); + if (dynamic_cast (Context::unsmob (context))) { SCM s = ly_format_output (context); - *tail = scm_cons (s, SCM_EOL); - tail = SCM_CDRLOC (*tail); + outputs = scm_cons (s, outputs); } scm_remember_upto_here_1 (scaled); } - scm_remember_upto_here_1 (scaled_bookdef); - return outputs; + return scm_reverse_x (outputs, SCM_EOL); } void