]> git.donarmstrong.com Git - lilypond.git/commitdiff
deleted old stem-extend; rename no-stem-extend to stem-extend.
authorgpercival <gpercival>
Fri, 20 Jun 2003 02:41:59 +0000 (02:41 +0000)
committergpercival <gpercival>
Fri, 20 Jun 2003 02:41:59 +0000 (02:41 +0000)
Duplicate examples, but no-blah was a better example.

ChangeLog
input/test/no-stem-extend.ly [deleted file]
input/test/stem-extend.ly

index 93714bf617e80798798cc21d20263d8bfbd0dbc3..4712d846ba62014e253c0929528b3fad9c091b5f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,10 @@
 
        * input/test/staff-line-leading.ly: renamed to  staff-space.ly.
 
+       * input/test/no-stem-extend.ly: moved to stem-extend.ly; previous
+       stem-extend was deleted (it was duplicate example, and not as
+       good).
+
 2003-06-20  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
 
        * lily/slur.cc (get_boundary_notecolumn_y): change name from
diff --git a/input/test/no-stem-extend.ly b/input/test/no-stem-extend.ly
deleted file mode 100644 (file)
index 202e41a..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-\version "1.7.18"
-
-\header { texidoc = "@cindex No Stem Extend
-You can stop Lilypond from extending stems to the center line. "
-}
-
-\score { 
-  \context Voice \notes\relative c {
-       \context Staff <
-               \context Voice = "a" { 
-                       f2 f8 g a b 
-                       \property Voice.Stem \set #'no-stem-extend = ##t
-                       f2 f8 g a b
-               }
-               \context Voice = "b" { 
-                       c''2 c8 b a g
-                       \property Voice.Stem \set #'no-stem-extend = ##t
-                       c2 c8 b a g
-               }
-       >
-       
-  }
-  \paper { raggedright = ##t}  
-}
-%% new-chords-done %%
index 11fab15c3c126b5aca4b2037683a9fcd933d600c..7b94e3016a6414560a73e1a4745da62a012b6468 100644 (file)
@@ -1,14 +1,25 @@
 \version "1.7.18"
-\header { texidoc = "
-Conventionally, stems and beams extend to the middle staff line.  This
-extension can be controlled through @code{Voice.Stem}'s grob-property
-@code{no-stem-extend}:
-"}
 
-\paper { raggedright = ##t}
-\score {\notes \relative c \context Voice {
-  \grace a'8 a4
-  \property Voice.Stem \set #'no-stem-extend = ##t
-  \grace g8 g4  g8-[ g]
-}}
+\header { texidoc = "@cindex Stem Extend
+You can stop Lilypond from extending stems to the center line. "
+}
+
+\score { 
+  \context Voice \notes\relative c {
+       \context Staff <
+               \context Voice = "a" { 
+                       f2 f8 g a b 
+                       \property Voice.Stem \set #'no-stem-extend = ##t
+                       f2 f8 g a b
+               }
+               \context Voice = "b" { 
+                       c''2 c8 b a g
+                       \property Voice.Stem \set #'no-stem-extend = ##t
+                       c2 c8 b a g
+               }
+       >
+       
+  }
+  \paper { raggedright = ##t}  
+}
 %% new-chords-done %%