From 898d57568fcb4e4314f98b5abe3da0a4a397224c Mon Sep 17 00:00:00 2001 From: Han-Wen Nienhuys Date: Wed, 29 Jun 2005 11:32:53 +0000 Subject: [PATCH] * scm/define-markup-commands.scm (wordwrap-string): new function: split string in paras and words. (wordwrap-markups): new function. (wordwrap-stencils): new function. (justify): use it. (wordwrap): use it. (wordwrap-string): use it (justify-string): use it. * scm/define-markup-commands.scm: remove encoded-simple. remove font-markup. (fontsize): remove old version of fontsize. (wordwrap): new markup function. Wrap into paragraphs. --- THANKS | 18 ++++++++++++++++++ scm/define-markup-commands.scm | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/THANKS b/THANKS index 0d007c6070..504a23e01d 100644 --- a/THANKS +++ b/THANKS @@ -1,3 +1,21 @@ +Release 2.7 +*********** + +DEVELOPMENT TEAM + +Han-Wen Nienhuys - Core development +Jan Nieuwenhuizen - Core development +Erik Sandberg - Bug Meister +Pedro Kroger - Build Meister +Graham Percival - Documentation Editor + + +SPONSORS + +Sven Axelsson + + + Release 2.6 *********** diff --git a/scm/define-markup-commands.scm b/scm/define-markup-commands.scm index ab0ca1eaf1..bf2c40c869 100644 --- a/scm/define-markup-commands.scm +++ b/scm/define-markup-commands.scm @@ -1076,7 +1076,7 @@ the elements marked in @var{indices}, which is a list of numbers." ((null? stencils) '()) ((not (ly:stencil? last-stencil)) (cons (car stencils) - (stack-stencils (cdr stencils) bskip (car stencils)))) + (stack-stencils-vertically (cdr stencils) bskip (car stencils)))) (else (let* ((orig (car stencils)) (dir (chain-assoc-get 'direction props DOWN)) -- 2.39.5