]> git.donarmstrong.com Git - lilypond.git/commitdiff
Update example with outdated
authorJan Nieuwenhuizen <janneke@gnu.org>
Sun, 26 May 2002 20:32:23 +0000 (20:32 +0000)
committerJan Nieuwenhuizen <janneke@gnu.org>
Sun, 26 May 2002 20:32:23 +0000 (20:32 +0000)
comment.

ChangeLog
input/regression/non-empty-text.ly

index 5243032f3c7c339ca6d16fef0d6547418b08cb6f..938ce2824a39e4342b5719267c5816355b316b52 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-05-26  Jan Nieuwenhuizen  <janneke@gnu.org>
+
+       * input/regression/non-empty-text.ly: Update example with outdated
+       comment.
+
 2002-05-25  Han-Wen  <hanwen@cs.uu.nl>
 
        * scripts/convert-ly.py:  add textNonEmpty rule
@@ -6,7 +11,7 @@
 
 2002-05-24  Jan Nieuwenhuizen  <janneke@gnu.org>
 
-       * lily/text-item.cc (markup_text2molecule): Junk ugly lookahead by
+d      * lily/text-item.cc (markup_text2molecule): Junk ugly lookahead by
        using translate-robust add_molecule instead of add_at_edge.
        Bugfix for #(lines (finger "" "1")).
 
index 43c81652d8c176354ead6c51d3df0b969b9011a6..827c4d9c81bc9703fab87d2635cd4d10c76276b4 100644 (file)
@@ -1,18 +1,22 @@
 \version "1.3.146"
 
 \header{
-texidoc="
+    texidoc="
 Text is set with empty horizontal dimensions.  The boolean property
-textNonEmpty is used to respect the horizontal size of text.
+TextScript.no-spacing-rods is used to control the horizontal size of text.
 "
 }
-\score { \notes {
-c2_"very wide and long text" c | \break
-\fatText  % short for \property Voice.textNonEmpty = ##t
-c_"very wide and long text" c
-}
 
-\paper {
-  linewidth  = 3.\cm
-  }
+\score{
+    \notes{
+       %% \emptyText
+       %% short for \property Voice.TextScript \set #'no-spacing-rods = ##t
+       c2_"very wide and long text" c | \break
+       %% short for \property Voice.TextScript \set #'no-spacing-rods = ##f
+       \fatText
+       c_"very wide and long text" c
+    }
+    \paper {
+       linewidth  = 3.0\cm
+    }
 }