bug fixed in last_line() : assert(l!=0) should be assert(lines!=0).

This commit is contained in:
bal 1985-01-23 16:12:21 +00:00
parent e95492dfb0
commit f487f26e00

View file

@ -21,7 +21,7 @@ line_p last_line(lines)
register line_p l;
assert (l != (line_p) 0);
assert (lines != (line_p) 0);
for (l = lines; l->l_next != (line_p) 0; l = l->l_next);
return l;
}