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

This commit is contained in:
h_vogt 2013-06-05 22:51:06 +02:00 committed by rlar
parent 15fab1ea12
commit 83205d6c30
1 changed files with 2 additions and 1 deletions

View File

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