From: Han-Wen Nienhuys <hanwen@xs4all.nl>
Date: Thu, 28 Aug 2003 21:59:56 +0000 (+0000)
Subject: (texidoc): transpose up
X-Git-Tag: release/1.9.6~55
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=c82168dd90e55fe7960b5efb5c5cc910dcae8952;p=lilypond.git

(texidoc): transpose up
---

diff --git a/ChangeLog b/ChangeLog
index 5a1829afb1..de8abbeea2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2003-08-29  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
+
+	* input/regression/breathing-sign.ly (texidoc): transpose up
+
 2003-08-28  Juergen Reuter  <reuter@ipd.uka.de>
 
 	* input/regression/breathing-sign.ly: changed ancient examples to
@@ -9,6 +13,9 @@
 
 2003-08-28  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
 
+	* Documentation/user/refman.itely (Clef): give example of G_8 clef.
+	(Clef): index entries for clefs.
+
 	* python/lilylib.py (system): remove errorlog files.
 	
 2003-08-28  Heikki Junes  <hjunes@cc.hut.fi>
diff --git a/Documentation/user/refman.itely b/Documentation/user/refman.itely
index f9a4e53500..75b58f153b 100644
--- a/Documentation/user/refman.itely
+++ b/Documentation/user/refman.itely
@@ -881,25 +881,36 @@ The clef can be set or changed with the @code{\clef} command:
 Supported clef-names include:
 @c Moved standard clefs to the top /MB
 @table @code
+@cindex treble clef
+@cindex violin clef
 @item treble, violin, G, G2
 G clef on 2nd line
 @item alto, C
+@cindex alto clef 
  C clef on 3rd line
 @item tenor
- C clef on 4th line
+@cindex tenor clef 
+ C clef on 4th line. 
 @item bass, F
+@cindex bass clef
  F clef on 4th line
 @item french
+@cindex french clef
  G clef on 1st line, so-called French violin clef
 @item soprano
+@cindex soprano clef
  C clef on 1st line
 @item mezzosoprano
+@cindex mezzosoprano clef
  C clef on 2nd line
 @item baritone
+@cindex baritone clef
  C clef on 5th line
 @item varbaritone
+@cindex varbaritone clef
  F clef on 3rd line
 @item subbass
+@cindex subbass clef
  F clef on 5th line
 @item percussion
  percussion clef
@@ -909,9 +920,12 @@ By adding @code{_8} or @code{^8} to the clef name, the clef is
 transposed one octave down or up, respectively. Argument @var{clefname} 
 must be enclosed in quotes when it contains underscores or digits. For
 example,
-@example
-	\clef "G_8"
-@end example
+
+
+@cindex choral tenor clef  
+@lilypond[verbatim,fragment,relative]
+	\clef "G_8" c4
+@end lilypond
 
 This command is equivalent to setting @code{clefGlyph},
 @code{clefPosition} (which controls the Y position of the clef),
diff --git a/input/regression/breathing-sign.ly b/input/regression/breathing-sign.ly
index 35cbe66591..bef66328e3 100644
--- a/input/regression/breathing-sign.ly
+++ b/input/regression/breathing-sign.ly
@@ -21,12 +21,13 @@ finalis, the latter three looking similar to bar glyphs.
 \include "gregorian-init.ly"
 
 \score {
+
   {
     %
     % Modern notation:
     %
-    \context Staff {
-      \notes \relative c' {
+    \new Staff {
+      \notes \relative c'' {
 	\key es \major \time 3/4
 
 	% this bar contains no \breathe
diff --git a/python/lilylib.py b/python/lilylib.py
index e221817bd1..ba339854bc 100644
--- a/python/lilylib.py
+++ b/python/lilylib.py
@@ -260,7 +260,6 @@ def read_pipe (cmd, mode = 'r'):
 	signal = 0x0f & status
 	exit_status = status >> 8
 
-	print 'errorlog', error_log_file 
 	if status:
 		error (_ ("`%s\' failed (%d)") % (cmd, exit_status))
 		
@@ -280,9 +279,7 @@ def read_pipe (cmd, mode = 'r'):
 		progress ('\n')
 
 	if error_log_file:
-		print 'unlinking errorlog', error_log_file 
 		os.unlink (error_log_file)
-	print 'reachin end', error_log_file 
 		
 	return output