From fe0141008d74a22840f03616c5ef302860714e93 Mon Sep 17 00:00:00 2001 From: fred Date: Fri, 17 Jan 1997 13:51:29 +0000 Subject: [PATCH] lilypond-0.0.23 --- src/texbeam.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/texbeam.cc b/src/texbeam.cc index 652360eee8..bded0d7751 100644 --- a/src/texbeam.cc +++ b/src/texbeam.cc @@ -66,9 +66,10 @@ Lookup::beam(Real &slope, Real width) int sidx = slope_index(slope); if (!slope) return rule_symbol(convert_dimen(2,"pt"), width); - if (width < convert_dimen(2,"pt")) - error("Beam too narrow. " ); - + if (width < convert_dimen(2,"pt")) { + WARN<<"Beam too narrow.\n"; + width = convert_dimen(2,"pt"); + } Real elemwidth = convert_dimen(64,"pt"); int widx = 5; -- 2.39.5