inpcom.c, inp_stitch_continuation_lines(), rewrite for the following commit

This commit is contained in:
rlar 2017-04-20 18:36:07 +02:00
parent 420c023f56
commit 5ff5839296
1 changed files with 2 additions and 1 deletions

View File

@ -399,7 +399,8 @@ inp_stitch_continuation_lines(struct line *working)
end->li_next = working;
tfree(s);
} else {
prev->li_actual = xx_new_line(working, s, prev->li_linenum, 0);
prev->li_actual = xx_new_line(NULL, s, prev->li_linenum, 0);
prev->li_actual->li_next = working;
}
working = prev->li_next;
break;