X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fnon-empty-text.ly;h=a3ba0d92a69b0c8877f518c51aaf810892d5e4b5;hb=26a079ca2393d053315ef8dbef626c897dc9645a;hp=f4d9e94e3d153485a5f7c4e2ee2d7e67ca075be6;hpb=079be3c9a14d13e594cb1c1924058322a93ca1b5;p=lilypond.git diff --git a/input/regression/non-empty-text.ly b/input/regression/non-empty-text.ly index f4d9e94e3d..a3ba0d92a6 100644 --- a/input/regression/non-empty-text.ly +++ b/input/regression/non-empty-text.ly @@ -1,10 +1,10 @@ - -\version "2.12.0" +\version "2.16.0" \header{ - texidoc=" By default, text is set with empty horizontal dimensions. -The boolean property @code{no-spacing-rods} in @code{TextScript} is used -to control the horizontal size of text. " } + texidoc = "By default, text is set with empty horizontal dimensions. +The property @code{extra-spacing-width} in @code{TextScript} is used +to control the horizontal size of text." +} \layout { line-width = 3.0\cm @@ -12,11 +12,11 @@ to control the horizontal size of text. " } \relative c''{ %% \textLengthOff - %% short for \override TextScript #'no-spacing-rods = ##t + %% short for \override TextScript #'extra-spacing-width = #'(+inf.0 . -inf.0) + %% \override TextScript #'extra-spacing-height = #'(0 . 0) c2_"very wide and long text" c | \break - %% short for \override TextScript #'no-spacing-rods = ##f + %% short for \override TextScript #'extra-spacing-width = #'(0 . 0) + %% \override TextScript #'extra-spacing-height = #'(-inf.0 . +inf.0) \textLengthOn - c_"very wide and long text" c + c2_"very wide and long text" c } - -