| # | Line 263 | Line 263 | char *id; | |
|---|---|---|
| 263 | *cp2++ = 'O'; | |
| 264 | } | |
| 265 | for (cp = id; cp < end; *cp2++ = *cp++) { | |
| 266 | < | if (*cp < '!' | *cp > '~') /* limit to visible chars */ |
| 266 | > | if ((*cp < '!') | (*cp > '~')) /* limit to visible chars */ |
| 267 | *cp = '?'; | |
| 268 | diff += *cp != *cp2; | |
| 269 | } | |
| # | Line 428 | Line 428 | FUNARGS *fa; | |
| 428 | register char *cp; | |
| 429 | register int i; | |
| 430 | ||
| 431 | < | if (fa->nfargs < 9 | fa->nfargs % 3) |
| 431 | > | if ((fa->nfargs < 9) | (fa->nfargs % 3)) |
| 432 | return(-1); | |
| 433 | setmat(mod); | |
| 434 | setobj(id); | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |