diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2015-12-19 14:13:38 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2015-12-19 14:13:38 +0000 |
commit | 840804b09bcebbd29703442bb47857fbbf3f3b66 (patch) | |
tree | d5a64e2b023cfacbbd218ac8024e8b5488f062be /Build/source/texk/web2c/luatexdir/tex/texmath.w | |
parent | aff8cf6c52a5cf470b600e0d5898446af7b313d0 (diff) |
web2c/luatexdir: sync with the upstream
git-svn-id: svn://tug.org/texlive/trunk@39147 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/luatexdir/tex/texmath.w')
-rw-r--r-- | Build/source/texk/web2c/luatexdir/tex/texmath.w | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Build/source/texk/web2c/luatexdir/tex/texmath.w b/Build/source/texk/web2c/luatexdir/tex/texmath.w index 661830bb16c..81cfd9cf733 100644 --- a/Build/source/texk/web2c/luatexdir/tex/texmath.w +++ b/Build/source/texk/web2c/luatexdir/tex/texmath.w @@ -330,18 +330,18 @@ void dump_math_data(void) sa_value.int_value = MATHFONTDEFAULT; math_fam_head = new_sa_tree(MATHFONTSTACK, 1, sa_value); } - dump_sa_tree(math_fam_head); + dump_sa_tree(math_fam_head, "mathfonts"); if (math_param_head == NULL) { sa_value.int_value = MATHPARAMDEFAULT; math_param_head = new_sa_tree(MATHPARAMSTACK, 1, sa_value); } - dump_sa_tree(math_param_head); + dump_sa_tree(math_param_head, "mathparameters"); } void undump_math_data(void) { - math_fam_head = undump_sa_tree(); - math_param_head = undump_sa_tree(); + math_fam_head = undump_sa_tree("mathfonts"); + math_param_head = undump_sa_tree("mathparameters"); } @ @c |