Browse Source

inpcom.c, expand_section_ref(), #5/7, drop 'newl'

pre-master-46
rlar 9 years ago
parent
commit
0f8fb4cf51
  1. 9
      src/frontend/inpcom.c

9
src/frontend/inpcom.c

@ -2418,17 +2418,14 @@ expand_section_ref(struct line *c, char *dir_name)
/* insert the library section definition into `c' */ /* insert the library section definition into `c' */
{ {
struct line *newl;
struct line *rest = c->li_next; struct line *rest = c->li_next;
struct line *t = section_def; struct line *t = section_def;
for (; t; t=t->li_next) { for (; t; t=t->li_next) {
newl = xx_new_line(NULL, copy(t->li_line), t->li_linenum, t->li_linenum_orig);
c = c->li_next = xx_new_line(NULL, copy(t->li_line), t->li_linenum, t->li_linenum_orig);
if (t == section_def) { if (t == section_def) {
newl->li_line[0] = '*';
newl->li_line[1] = '<';
c->li_line[0] = '*';
c->li_line[1] = '<';
} }
c->li_next = newl;
c = newl;
if(ciprefix(".endl", t->li_line)) if(ciprefix(".endl", t->li_line))
break; break;
} }

Loading…
Cancel
Save