From: Jan Nieuwenhuizen Date: Wed, 22 Dec 1999 17:10:46 +0000 (+0100) Subject: patch::: 1.3.16.jcn1 X-Git-Tag: release/1.3.17~1 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=9d08763c0601ede497f2f0960b26bc3872a74bf6;p=lilypond.git patch::: 1.3.16.jcn1 1.3.16.jcn1 * Fixed cross staff slurs. It seems that cross-staff sign was swapped. --- diff --git a/CHANGES b/CHANGES index f0d171221d..5b2222460c 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,7 @@ +1.3.16.jcn1 + * Fixed cross staff slurs. It seems that cross-staff sign + was swapped. + 1.3.15.hwn1 =========== diff --git a/Documentation/topdocs/AUTHORS.texi b/Documentation/topdocs/AUTHORS.texi index a9969ccd58..1472a36863 100644 --- a/Documentation/topdocs/AUTHORS.texi +++ b/Documentation/topdocs/AUTHORS.texi @@ -54,10 +54,9 @@ list is alphabetically ordered. @item @email{oliva@@dcc.unicamp.br, Alexandre Oliva}, @uref{http://sunsite.unicamp.br/~oliva/} testing -@item @email{pinard@@iro.umontreal.ca, Francois Pinard}, +@item @email{pinard@@iro.umontreal.ca, Franc@,ois Pinard}, parts of Documentation/Vocab*, started internationalization stuff -@c urg: @c,{} in @email{} barfs. -@item @email{portnoy@@ai.mit.edu,Stephen Peters}, pdfTeX support +@item @email{portnoy@@ai.mit.edu,Stephen Peters} pdfTeX support @item @email{glenprideaux@@iname.com, Glen Prideaux}, minor bug fix to script used to generate doc++ documentation @item @email{Roy.Rankin@@alcatel.com.au, Roy R. Rankin}, diff --git a/VERSION b/VERSION index 9bba35ee8b..392c87bcaa 100644 --- a/VERSION +++ b/VERSION @@ -2,7 +2,7 @@ PACKAGE_NAME=LilyPond MAJOR_VERSION=1 MINOR_VERSION=3 PATCH_LEVEL=16 -MY_PATCH_LEVEL= +MY_PATCH_LEVEL=jcn1 # use the above to send patches: MY_PATCH_LEVEL is always empty for a # released version. diff --git a/lily/slur.cc b/lily/slur.cc index 6f4d1c279c..9b965fa522 100644 --- a/lily/slur.cc +++ b/lily/slur.cc @@ -119,7 +119,7 @@ Slur::encompass_offset (Note_column const* col) const leave a gap: slur mustn't touch head/stem */ o[Y_AXIS] += dir * paper_l ()->get_var ("slur_y_free"); - o[Y_AXIS] += calc_interstaff_dist (stem_l, this); + o[Y_AXIS] -= calc_interstaff_dist (stem_l, this); return o; } @@ -252,7 +252,7 @@ Slur::do_post_processing () do { info_drul[d] = encompass_offset (encompass_arr.boundary (d, 0)); - interstaff_interval[d] = calc_interstaff_dist (encompass_arr.boundary (d,0), + interstaff_interval[d] = - calc_interstaff_dist (encompass_arr.boundary (d,0), this); } while (flip (&d) != LEFT);