]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.18
authorfred <fred>
Thu, 19 Dec 1996 10:21:49 +0000 (10:21 +0000)
committerfred <fred>
Thu, 19 Dec 1996 10:21:49 +0000 (10:21 +0000)
NEWS
src/item.cc

diff --git a/NEWS b/NEWS
index 455012a74f3a035e05f8888ed0de6f46aab17452..34a2deafd20a5dd12f32fd340dde8c2822fdf9d8 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,6 @@
+pl 18:
+       - robust Staff_commands
+
 pl 17:
        - robust Input_commands
        - merged Vertical_/Horizontal music
index 4a8ea949d6c9a3c392e267f25639221f9b220886..ba71539d301f35b5861fe00c9afa63ccddc959a2 100644 (file)
@@ -36,7 +36,9 @@ Interval
 Item::width() const
 {
     Interval i =output->extent().x ;
-    return i+=offset_.x;
+    if (!i.empty())            // float exception on DEC Alpha
+        i+=offset_.x;
+    return i;
 }
 
 Interval