From f1380ab114f4bf478ccc658c97eb5a4857823c18 Mon Sep 17 00:00:00 2001 From: rlar Date: Sat, 22 Apr 2017 20:43:31 +0200 Subject: [PATCH] inpcom.c, drop unused artefact xx_new_line() --- src/frontend/inpcom.c | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/frontend/inpcom.c b/src/frontend/inpcom.c index 2e8404940..a7ab81fcf 100644 --- a/src/frontend/inpcom.c +++ b/src/frontend/inpcom.c @@ -158,22 +158,6 @@ static void inp_poly_err(struct line *deck); #endif -static struct line * -xx_new_line(struct line *next, char *line, int linenum, int linenum_orig) -{ - struct line *x = TMALLOC(struct line, 1); - - x->li_next = next; - x->li_error = NULL; - x->li_actual = NULL; - x->li_line = line; - x->li_linenum = linenum; - x->li_linenum_orig = linenum_orig; - - return x; -} - - /* insert a new card, just behind the given card */ static struct line * insert_new_line(struct line *card, char *line, int linenum, int linenum_orig)