From: gpercival <gpercival>
Date: Fri, 20 Jun 2003 02:41:59 +0000 (+0000)
Subject: deleted old stem-extend; rename no-stem-extend to stem-extend.
X-Git-Tag: release/1.7.25~98
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=f5cf9c75f135b29150344049b3f0c724a93f1da4;p=lilypond.git

deleted old stem-extend; rename no-stem-extend to stem-extend.
Duplicate examples, but no-blah was a better example.
---

diff --git a/ChangeLog b/ChangeLog
index 93714bf617..4712d846ba 100644
--- 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
index 202e41aae1..0000000000
--- a/input/test/no-stem-extend.ly
+++ /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 %%
diff --git a/input/test/stem-extend.ly b/input/test/stem-extend.ly
index 11fab15c3c..7b94e3016a 100644
--- a/input/test/stem-extend.ly
+++ b/input/test/stem-extend.ly
@@ -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 %%