]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/time-signature.cc
* scm/define-grob-properties.scm: remove 'type
[lilypond.git] / lily / time-signature.cc
index 35da64f305d9f4bf49eef7b36c0e7293ac849d6c..dd8e06682e62ec5c9ac7f64b84af874301ed32cd 100644 (file)
@@ -3,7 +3,7 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1996--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1996--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 
@@ -106,8 +106,8 @@ Time_signature::numbered_time_signature (Grob*me,int num, int den)
   Molecule m;
   if (den)
     {
-      m.add_at_edge (Y_AXIS, UP, n, 0.0);
-      m.add_at_edge (Y_AXIS, DOWN, d, 0.0);
+      m.add_at_edge (Y_AXIS, UP, n, 0.0, 0);
+      m.add_at_edge (Y_AXIS, DOWN, d, 0.0,0);
     }
   else
     {
@@ -121,30 +121,29 @@ Time_signature::numbered_time_signature (Grob*me,int num, int den)
 }
 
 ADD_INTERFACE (Time_signature, "time-signature-interface",
-  "A time signature, in different styles.
-  The following values for 'style are are recognized:
-
-    @table @samp
-      @item @code{C}
-        4/4 and 2/2 are typeset as C and struck C, respectively.  All
-        other time signatures are written with two digits.
-
-      @item @code{neo_mensural}
-        2/2, 3/2, 2/4, 3/4, 4/4, 6/4, 9/4, 4/8, 6/8 and 9/8 are
-        typeset with neo-mensural style mensuration marks.  All other time
-        signatures are written with two digits.
-
-      @item @code{mensural}
-        2/2, 3/2, 2/4, 3/4, 4/4, 6/4, 9/4, 4/8, 6/8 and 9/8 are
-        typeset with mensural style mensuration marks.  All other time
-        signatures are written with two digits.
-
-      @item @code{1xxx}
-        All time signatures are typeset with a single
-        digit, e.g. 3/2 is written as 3. (Any symbol starting
-       with the digit @code{1} will do.)
-    @end table
-
-See also the test-file @file{input/test/time.ly}.
-",
+  "A time signature, in different styles.\n"
+"  The following values for 'style are are recognized:\n"
+"\n"
+"    @table @samp\n"
+"      @item @code{C}\n"
+"        4/4 and 2/2 are typeset as C and struck C, respectively.  All\n"
+"        other time signatures are written with two digits.\n"
+"\n"
+"      @item @code{neo_mensural}\n"
+"        2/2, 3/2, 2/4, 3/4, 4/4, 6/4, 9/4, 4/8, 6/8 and 9/8 are\n"
+"        typeset with neo-mensural style mensuration marks.  All other time\n"
+"        signatures are written with two digits.\n"
+"\n"
+"      @item @code{mensural}\n"
+"        2/2, 3/2, 2/4, 3/4, 4/4, 6/4, 9/4, 4/8, 6/8 and 9/8 are\n"
+"        typeset with mensural style mensuration marks.  All other time\n"
+"        signatures are written with two digits.\n"
+"\n"
+"      @item @code{1xxx}\n"
+"        All time signatures are typeset with a single\n"
+"        digit, e.g. 3/2 is written as 3. (Any symbol starting\n"
+"      with the digit @code{1} will do.)\n"
+"    @end table\n"
+"\n"
+"See also the test-file @file{input/test/time.ly}.\n",
   "fraction style");