Browse Source

inp.c: skip title line when searching for .if in dotifeval()

pre-master-46
h_vogt 13 years ago
committed by rlar
parent
commit
83205d6c30
  1. 3
      src/frontend/inp.c

3
src/frontend/inp.c

@ -1219,7 +1219,8 @@ dotifeval(struct line *deck)
char *dottoken;
char *s, *t;
for (dd = deck; dd; dd = dd->li_next) {
/* skip the first line (title line) */
for (dd = deck->li_next; dd; dd = dd->li_next) {
s = t = dd->li_line;

Loading…
Cancel
Save