inpcom.c, expand_section_ref(), drop 'rest'

This commit is contained in:
rlar 2017-04-22 12:33:56 +02:00
parent 8888be7eae
commit 7af4421a50
1 changed files with 1 additions and 3 deletions

View File

@ -2419,10 +2419,9 @@ expand_section_ref(struct line *c, char *dir_name)
/* insert the library section definition into `c' */
{
struct line *rest = c->li_next;
struct line *t = section_def;
for (; t; t=t->li_next) {
c = c->li_next = xx_new_line(NULL, copy(t->li_line), t->li_linenum, t->li_linenum_orig);
c = c->li_next = xx_new_line(c->li_next, copy(t->li_line), t->li_linenum, t->li_linenum_orig);
if (t == section_def) {
c->li_line[0] = '*';
c->li_line[1] = '<';
@ -2436,7 +2435,6 @@ expand_section_ref(struct line *c, char *dir_name)
}
c->li_line[0] = '*';
c->li_line[1] = '>';
c->li_next = rest;
c = c;
}