From: hanwen Date: Tue, 2 Apr 2002 12:34:02 +0000 (+0000) Subject: '' X-Git-Tag: release/1.5.59~167 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=2d495ba4903c1f1cddb93207e7423353b15ecc34;p=lilypond.git '' --- diff --git a/ChangeLog b/ChangeLog index 68b331b8fd..0fe621b8a9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2002-04-02 Han-Wen Nienhuys + * lily/note-spacing.cc (stem_dir_correction): only do + beam-correction if a beam is there. + * lily/stem.cc (duration_log): change from flag_i (); better naming. (get_default_stem_end_position): fix dot/flag collision code. diff --git a/Documentation/regression-test.tely b/Documentation/regression-test.tely index c730a88366..c388e4ce2e 100644 --- a/Documentation/regression-test.tely +++ b/Documentation/regression-test.tely @@ -41,7 +41,6 @@ documenting bugfixes. @lilypondfile[printfilename]{rest-pitch.ly} - @section Dots @lilypondfile[printfilename]{dots.ly} diff --git a/lily/note-spacing.cc b/lily/note-spacing.cc index 314d2dd5bd..fee2bb8b07 100644 --- a/lily/note-spacing.cc +++ b/lily/note-spacing.cc @@ -311,7 +311,7 @@ Note_spacing::stem_dir_correction (Grob*me, Item * rcolumn, if (correct &&stem_dirs[LEFT] *stem_dirs[RIGHT] == -1) { - if (beams_drul[LEFT] == beams_drul[RIGHT]) + if (beams_drul[LEFT] && beams_drul[LEFT] == beams_drul[RIGHT]) { /* this is a knee: maximal correction. diff --git a/scm/grob-description.scm b/scm/grob-description.scm index 45644a2fd3..7244f1f54d 100644 --- a/scm/grob-description.scm +++ b/scm/grob-description.scm @@ -696,7 +696,6 @@ (NoteSpacing . ( (stem-spacing-correction . 0.5) - (space-factor . 1.0) (meta . ((interfaces . (note-spacing-interface)))) ))