diff options
author | Taco Hoekwater <taco@elvenkind.com> | 2008-04-30 07:59:35 +0000 |
---|---|---|
committer | Taco Hoekwater <taco@elvenkind.com> | 2008-04-30 07:59:35 +0000 |
commit | 9012e39fe4153976f49bd22056aea273281c60d7 (patch) | |
tree | e0220fe8186ac670d99140db0a2c61d4dba43bf3 | |
parent | ba4254396bf78c635df508ef188adefe026a1c3c (diff) |
fix a badly scoped next
git-svn-id: svn://tug.org/texlive/trunk@7736 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Build/source/texk/web2c/luatexdir/font/luafont.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/luatexdir/font/luafont.c b/Build/source/texk/web2c/luatexdir/font/luafont.c index 7bc888c6b67..4a2eda1f41c 100644 --- a/Build/source/texk/web2c/luatexdir/font/luafont.c +++ b/Build/source/texk/web2c/luatexdir/font/luafont.c @@ -1451,6 +1451,7 @@ add_glyph_to_all: try_couple_nodes(cur,next); flush_node(fwd); } else if ( type(fwd)==disc_node) { + halfword next; /* MAGIC WARNING * A disc followed by a disc can have different kernings * depending on which path is choosen, and it is impossible to @@ -1460,7 +1461,6 @@ add_glyph_to_all: for (i=0; i<m; i++) { halfword copy = copy_node(fwd); halfword tail = tlink(lists[i]); - halfword next; if (tail!=null) { halfword prev = alink(tail); assert(alink(tail)!=null); |