235 |
|
COLOR ctmp; |
236 |
|
|
237 |
|
if (isheadid(s)) /* header id */ |
238 |
< |
return; /* don't echo */ |
238 |
> |
return(0); /* don't echo */ |
239 |
|
if (formatval(fmt, s)) { /* check format */ |
240 |
|
if (globmatch(ourfmt, fmt)) { |
241 |
|
wrongformat = 0; |
242 |
|
strcpy(ourfmt, fmt); |
243 |
|
} else |
244 |
|
wrongformat = 1; |
245 |
< |
return; /* don't echo */ |
245 |
> |
return(0); /* don't echo */ |
246 |
|
} |
247 |
|
if (isexpos(s)) { /* exposure */ |
248 |
|
d = exposval(s); |
256 |
|
gotview++; |
257 |
|
/* echo line */ |
258 |
|
putchar('\t'); |
259 |
< |
fputs(s, stdout); |
259 |
> |
return(fputs(s, stdout)); |
260 |
|
} |
261 |
|
|
262 |
|
|