[EMAIL PROTECTED] writes:
> When Lily 1.3.93 typesets a piece of music that begins with a repeated 
> section, an opening repeat bar is typeset right at the beginning of the 
> piece. This is visible in the section on repeats in the reference 
> manual.
> 
> By convention, a repeat bar is not printed right at the beginning of a 
> piece of music, and indeed Lily never used to typeset one. Is there an 
> option to turn this behaviour off (I couldn't see one in the user 
> manual), or is it a bug?

try this


--- repeat-acknowledge-engraver.cc~     Sun Oct  1 13:12:06 2000
+++ repeat-acknowledge-engraver.cc      Tue Oct 10 13:48:25 2000
@@ -57,6 +57,12 @@
 void
 Repeat_acknowledge_engraver::do_process_music ()
 {
+  /*
+    At the start of a piece, we don't print any repeat bars.
+   */
+  if (now_mom () == Moment (0))
+    return ; 
+  
   SCM cs = get_property ("repeatCommands");
 
   String s = "";


--
Han-Wen Nienhuys   |   [EMAIL PROTECTED]    | http://www.cs.uu.nl/~hanwen/


_______________________________________________
Gnu-music-discuss mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/gnu-music-discuss

Reply via email to