/* if the engine died, clear all highlights and quit */
if (ChildIn < 0 || !buf->path)
return colors_rewind(spans, 0);
-#if 0
/* commence the highlighting */
if (beg < end) {
write_chunk(buf, beg, end);
e = read_num();
c = read_num();
if (e > 0 && c > 0) {
- c = (c > 15 ? config_get_int(SynNormal + (c >> 4) - 1) : c) & 0xf;
+ c = (c > 15 ? Colors[SynNormal + (c >> 4) - 1].fg : c);
currspan = mkspan(beg+b, beg+e-1, c, currspan);
}
if (!firstspan)
fflush(stdout);
DataBeg = DataEnd = Buffer;
}
-#endif
return firstspan;
}