From: fred Date: Thu, 19 Dec 1996 10:21:49 +0000 (+0000) Subject: lilypond-0.0.18 X-Git-Tag: release/1.5.59~6552 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=7b9460c8372053623913952446329b6bc31503ac;p=lilypond.git lilypond-0.0.18 --- diff --git a/NEWS b/NEWS index 455012a74f..34a2deafd2 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,6 @@ +pl 18: + - robust Staff_commands + pl 17: - robust Input_commands - merged Vertical_/Horizontal music diff --git a/src/item.cc b/src/item.cc index 4a8ea949d6..ba71539d30 100644 --- a/src/item.cc +++ b/src/item.cc @@ -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