From 5fa737a2b47b8793fb8ce0f5f4869e0c57d53758 Mon Sep 17 00:00:00 2001 From: Akira Kakuto Date: Fri, 16 Jan 2015 06:40:24 +0000 Subject: web2c/luatexdir: Sync with the upstream git-svn-id: svn://tug.org/texlive/trunk@36071 c570f23f-e606-0410-a88d-b1316a301751 --- Build/source/texk/web2c/luatexdir/ChangeLog | 9 +++++++++ Build/source/texk/web2c/luatexdir/tex/mlist.w | 6 ++++-- 2 files changed, 13 insertions(+), 2 deletions(-) (limited to 'Build') diff --git a/Build/source/texk/web2c/luatexdir/ChangeLog b/Build/source/texk/web2c/luatexdir/ChangeLog index 6ce736f5a90..191879c727e 100644 --- a/Build/source/texk/web2c/luatexdir/ChangeLog +++ b/Build/source/texk/web2c/luatexdir/ChangeLog @@ -1,3 +1,12 @@ +2015-01-14 Luigi Scarso + + * tex/mlist.w: mlist_to_hlist(pointer mlist, boolean penalties, int cur_style) + HH-LS: was cur_mu = x_over_n(get_math_quad(cur_size), 18); + This is an old bug so the fix can influence outcome + The current mu is instead + cur_mu = x_over_n(get_math_quad(cur_style), 18); + Thanks to joseph.wright + 2014-12-21 Akira Kakuto * lua/lnodelib.c: Sync with the upstream. Luigi fixes 'print' for diff --git a/Build/source/texk/web2c/luatexdir/tex/mlist.w b/Build/source/texk/web2c/luatexdir/tex/mlist.w index e653c07c6f0..427a6348b2d 100644 --- a/Build/source/texk/web2c/luatexdir/tex/mlist.w +++ b/Build/source/texk/web2c/luatexdir/tex/mlist.w @@ -24,7 +24,7 @@ @ @c static const char _svn_version[] = - "$Id: mlist.w 5033 2014-07-05 00:36:59Z luigi $" + "$Id: mlist.w 5125 2015-01-15 18:36:42Z luigi $" "$URL: https://foundry.supelec.fr/svn/luatex/trunk/source/texk/web2c/luatexdir/tex/mlist.w $"; #include "ptexlib.h" @@ -3333,7 +3333,9 @@ static void mlist_to_hlist(pointer mlist, boolean penalties, int cur_style) case style_node: cur_style = subtype(q); setup_cur_size(cur_style); - cur_mu = x_over_n(get_math_quad(cur_size), 18); + /* HH-LS: was cur_mu = x_over_n(get_math_quad(cur_size), 18);*/ + /* This is an old bug so the fix can influence outcome */ + cur_mu = x_over_n(get_math_quad(cur_style), 18); goto DONE_WITH_NODE; break; case choice_node: -- cgit v1.2.3