| # | Line 135 | Line 135 | execute( /* execute a file */ | |
|---|---|---|
| 135 | while (!done) { | |
| 136 | maxlen = 0; | |
| 137 | for (j = 0; j < nlines; j++) { | |
| 138 | < | if ((done = fgets(linbuf, MAXLINE, fp) == NULL)) |
| 138 | > | if ((done = (fgets(linbuf, MAXLINE, fp) == NULL))) |
| 139 | break; | |
| 140 | k = strlen(linbuf); | |
| 141 | if (linbuf[k-1] == '\n') | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |