]> git.donarmstrong.com Git - lilypond.git/commitdiff
patch::: 1.3.47.mb3
authorMats Bengtsson <mats.bengtsson@s3.kth.se>
Tue, 2 May 2000 20:33:19 +0000 (22:33 +0200)
committerMats Bengtsson <mats.bengtsson@s3.kth.se>
Tue, 2 May 2000 20:33:19 +0000 (22:33 +0200)
VERSION
lily/note-head.cc

diff --git a/VERSION b/VERSION
index f9cb3f73e67a73ce95f2ebdf0611bcd478e34b09..2a559e647a02a466092de19cc703c185bcea467a 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -2,7 +2,7 @@ PACKAGE_NAME=LilyPond
 MAJOR_VERSION=1
 MINOR_VERSION=3
 PATCH_LEVEL=47
-MY_PATCH_LEVEL=mb2
+MY_PATCH_LEVEL=mb3
 
 # use the above to send patches: MY_PATCH_LEVEL is always empty for a
 # released version.
index 5f88f5c52db2d5e26069101c792fc21476c3669c..a89dee5aa072d292163c25f3cb64779b14d344a4 100644 (file)
@@ -56,15 +56,8 @@ void
 Note_head::before_line_breaking ()
 {
   // 8 ball looks the same as 4 ball:
-  String type; 
-  SCM style  = get_elt_property ("style");
-  if (gh_string_p (style))
-    {
-      type = ly_scm2string (style);
-    }
-  
   
-  if (balltype_i () > 2 || type == "harmonic" || type == "cross")
+  if (balltype_i () > 2)
     set_elt_property ("duration-log", gh_int2scm (2));
 
   if (Dots *d = dots_l ())