inpcom.c, drop unused artefact xx_new_line()

This commit is contained in:
rlar 2017-04-22 20:43:31 +02:00
parent 1afa04b2d1
commit bc62407226
1 changed files with 0 additions and 16 deletions

View File

@ -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)