| 491 | static void tty_ascgraphics_hilite_fixup(void); |
| 492 | |
| 493 | static void |
| 494 | tty_ascgraphics_hilite_fixup(void) |
| 495 | { |
| 496 | int c; |
| 497 | |
| 498 | for (c = 0; c < CLR_MAX / 2; c++) |
| 499 | if (c != CLR_BLACK) { |
| 500 | hilites[c | BRIGHT] = (char *) alloc(sizeof "\033[1;3%dm"); |
| 501 | Sprintf(hilites[c | BRIGHT], "\033[1;3%dm", c); |
| 502 | if (c != CLR_GRAY) { |
| 503 | hilites[c] = (char *) alloc(sizeof "\033[0;3%dm"); |
| 504 | Sprintf(hilites[c], "\033[0;3%dm", c); |
| 505 | } |
| 506 | } |
| 507 | } |
| 508 | #endif /* PC9800 */ |
| 509 | |
| 510 | void |
no test coverage detected