From 5ff5839296204b639b3e688805168ac11c5a36f3 Mon Sep 17 00:00:00 2001 From: rlar Date: Thu, 20 Apr 2017 18:36:07 +0200 Subject: [PATCH] inpcom.c, inp_stitch_continuation_lines(), rewrite for the following commit --- src/frontend/inpcom.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/frontend/inpcom.c b/src/frontend/inpcom.c index 31adbfd56..ee9525d94 100644 --- a/src/frontend/inpcom.c +++ b/src/frontend/inpcom.c @@ -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;