| # | Line 62 | Line 62 | adjheadline( /* check for lines to remove */ | |
|---|---|---|
| 62 | } | |
| 63 | if (s1 == s) | |
| 64 | continue; | |
| 65 | < | if (isspace(*s1) && !*s2 | isspace(*s2)) |
| 66 | < | return(0); /* skip */ |
| 65 | > | if ((*s1 == '=') & !*s2) |
| 66 | > | return(0); |
| 67 | > | if (isspace(*s1) & isspace(*s2)) |
| 68 | > | return(0); |
| 69 | } | |
| 70 | fputs(s, stdout); /* copy if no match */ | |
| 71 | return(0); | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |