X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fscore.cc;h=77002d82ab4da01176069e2864415499febbc409;hb=2603b58f6e4f8706c630273b063606296fa39919;hp=84f236864d4b07869eb6aa024c03424a155dab6d;hpb=f93e4199873c91ae32f0e84a610d14853dc379df;p=lilypond.git diff --git a/lily/score.cc b/lily/score.cc index 84f236864d..77002d82ab 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--2012 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 ()); + SCM context = ly_run_translator (music_, scaled); if (dynamic_cast (unsmob_context (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