| 1477 | } |
| 1478 | |
| 1479 | void |
| 1480 | term_start_color(int color) |
| 1481 | { |
| 1482 | if (color == NO_COLOR) |
| 1483 | xputs(nh_HE); /* inline term_end_color() */ |
| 1484 | else if (color < CLR_MAX && hilites[color] && *hilites[color]) |
| 1485 | xputs(hilites[color]); |
| 1486 | } |
| 1487 | |
| 1488 | void |
| 1489 | term_start_bgcolor(int color) |
no test coverage detected