diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2016-03-11 12:12:57 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2016-03-11 12:12:57 +0000 |
commit | b6607d1a70f236fc9f671ce2621978a410e649b1 (patch) | |
tree | 57ad797c7a6b132d736a9f15d00eec5e6ebd2a13 /Build/source/texk/web2c/luatexdir/tex/maincontrol.w | |
parent | 7cd1d4e0b78e2897415639c5ac54d796c6cb626e (diff) |
web2c/luatexdir: sync with the upstream
git-svn-id: svn://tug.org/texlive/trunk@39996 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/luatexdir/tex/maincontrol.w')
-rw-r--r-- | Build/source/texk/web2c/luatexdir/tex/maincontrol.w | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Build/source/texk/web2c/luatexdir/tex/maincontrol.w b/Build/source/texk/web2c/luatexdir/tex/maincontrol.w index f36283b58bb..12a4bbab583 100644 --- a/Build/source/texk/web2c/luatexdir/tex/maincontrol.w +++ b/Build/source/texk/web2c/luatexdir/tex/maincontrol.w @@ -1518,7 +1518,7 @@ void new_graf(boolean indented) mode = hmode; space_factor = 1000; /* LOCAL: Add local paragraph node */ - tail_append(make_local_par_node()); + tail_append(make_local_par_node(0)); if (indented) { p = new_null_box(); box_dir(p) = par_direction; @@ -1888,7 +1888,7 @@ void build_local_box(void) eq_define(local_right_box_base, box_ref_cmd, p); if (abs(mode) == hmode) { /* LOCAL: Add local paragraph node */ - tail_append(make_local_par_node()); + tail_append(make_local_par_node(1)); } eq_word_define(int_base + no_local_whatsits_code, no_local_whatsits + 1); } @@ -2851,7 +2851,7 @@ void fixup_directions(void) } if (temp_no_whatsits != 0) { /* LOCAL: Add local paragraph node */ - tail_append(make_local_par_node()); + tail_append(make_local_par_node(2)); } } } @@ -2961,7 +2961,7 @@ void assign_internal_value(int a, halfword p, int val) ((p == (int_base + local_inter_line_penalty_code)) || (p == (int_base + local_broken_penalty_code)))) { /* LOCAL: Add local paragraph node */ - tail_append(make_local_par_node()); + tail_append(make_local_par_node(3)); eq_word_define(int_base + no_local_whatsits_code, no_local_whatsits + 1); |