diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2015-12-19 04:43:01 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2015-12-19 04:43:01 +0000 |
commit | aff8cf6c52a5cf470b600e0d5898446af7b313d0 (patch) | |
tree | be65082c0db0af514075e4839f0109a5bed8f15a /Build/source/texk/web2c/luatexdir/utils | |
parent | 6d1ade1093cb96b932388c39e2ebab80a645e675 (diff) |
web2c/luatexdir: sync with the upstream
git-svn-id: svn://tug.org/texlive/trunk@39146 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/luatexdir/utils')
-rw-r--r-- | Build/source/texk/web2c/luatexdir/utils/managed-sa.w | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/web2c/luatexdir/utils/managed-sa.w b/Build/source/texk/web2c/luatexdir/utils/managed-sa.w index 857b2d42e9f..1be36eeb834 100644 --- a/Build/source/texk/web2c/luatexdir/utils/managed-sa.w +++ b/Build/source/texk/web2c/luatexdir/utils/managed-sa.w @@ -231,7 +231,7 @@ void dump_sa_tree(sa_tree a) for (l = 0; l < LOWPART; l++) { x = a->tree[h][m][l].dump_uint.value_1; dump_int(x); - if (n == 1) { + if (n == 2) { x = a->tree[h][m][l].dump_uint.value_2; dump_int(x); } @@ -283,7 +283,7 @@ sa_tree undump_sa_tree(void) for (l = 0; l < LOWPART; l++) { undump_int(x); a->tree[h][m][l].dump_uint.value_1 = x; - if (n == 1) { + if (n == 2) { undump_int(x); a->tree[h][m][l].dump_uint.value_2 = x; } |