summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Build/source/texk/web2c/hitexdir/hitex.w8
1 files changed, 4 insertions, 4 deletions
diff --git a/Build/source/texk/web2c/hitexdir/hitex.w b/Build/source/texk/web2c/hitexdir/hitex.w
index 366cff436ea..39f032723d3 100644
--- a/Build/source/texk/web2c/hitexdir/hitex.w
+++ b/Build/source/texk/web2c/hitexdir/hitex.w
@@ -30329,11 +30329,11 @@ static void hline_break(int final_widow_penalty)
}
auto_breaking=true;
if (option_hyphen_first && is_char_node(link(temp_head)))
- { cur_p = new_glue(zero_glue);
- link(cur_p)=link(temp_head);
+ { pointer p = new_glue(zero_glue);
+ link(p)=link(temp_head);
+ link(temp_head) =p;
}
- else
- cur_p=link(temp_head);
+ cur_p=link(temp_head);
while (cur_p!=null)
{ /*Call |try_break| if |cur_p| is a legal breakpoint...*/
if (is_char_node(cur_p))