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
parent fb5e17e407
commit 8f1e92503a
1 changed files with 2 additions and 1 deletions

View File

@ -1215,7 +1215,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;