From: Nicolas Sceaux Date: Mon, 25 Jun 2007 20:30:50 +0000 (+0200) Subject: Update font-table.ly after toplevel text handler changes: lists of texts are collecte... X-Git-Tag: release/2.11.28-1~72^2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=c8d69b14084bfa74a8c507cf7369030c834d4a8d;p=lilypond.git Update font-table.ly after toplevel text handler changes: lists of texts are collected, iso. single texts. --- diff --git a/input/manual/font-table.ly b/input/manual/font-table.ly index 523db092d9..74f0ef978a 100644 --- a/input/manual/font-table.ly +++ b/input/manual/font-table.ly @@ -90,9 +90,8 @@ (ly:font-load "emmentaler-20")))) (lines (doc-chars glyphs '())) (pages (group-lines (reverse lines)))) - (for-each - (lambda (x) - (collect-scores-for-book - parser - (make-override-markup '(word-space . 4) x))) - pages)) + (collect-scores-for-book + parser + (map (lambda (x) + (make-override-markup '(word-space . 4) x)) + pages)))