| 313 | } |
| 314 | |
| 315 | static void |
| 316 | do_set_port_font(tty_record *record) |
| 317 | { |
| 318 | PenNormal(); |
| 319 | TextFont(record->font_number); |
| 320 | TextSize(record->font_size); |
| 321 | if (0L != (record->attribute[TTY_ATTRIB_FLAGS] & TA_OVERSTRIKE)) { |
| 322 | TextMode(srcOr); |
| 323 | } else { |
| 324 | TextMode(srcCopy); |
| 325 | } |
| 326 | } |
| 327 | |
| 328 | void |
| 329 | tty_nhbell(void) |
no test coverage detected