From: Mats Bengtsson <mats.bengtsson@s3.kth.se>
Date: Tue, 2 May 2000 20:33:19 +0000 (+0200)
Subject: patch::: 1.3.47.mb3
X-Git-Tag: release/1.3.48~2
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=73f80c1507aea8de2e942b5d50d4b504df31a3ad;p=lilypond.git

patch::: 1.3.47.mb3
---

diff --git a/VERSION b/VERSION
index f9cb3f73e6..2a559e647a 100644
--- 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.
diff --git a/lily/note-head.cc b/lily/note-head.cc
index 5f88f5c52d..a89dee5aa0 100644
--- a/lily/note-head.cc
+++ b/lily/note-head.cc
@@ -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 ())