| 1549 | } |
| 1550 | |
| 1551 | static int |
| 1552 | X11_io_error_handler(Display *display) |
| 1553 | { |
| 1554 | nhUse(display); |
| 1555 | #if defined(HANGUPHANDLING) |
| 1556 | hangup(1); |
| 1557 | #ifdef SAFERHANGUP /* keeps going after hangup() for '#if SAFERHANGUP' */ |
| 1558 | end_of_input(); |
| 1559 | #endif |
| 1560 | #endif |
| 1561 | /*NOREACHED*/ /* but not declared NORETURN */ |
| 1562 | return 0; |
| 1563 | } |
| 1564 | |
| 1565 | void |
| 1566 | X11_init_nhwindows(int *argcp, char **argv) |
nothing calls this directly
no test coverage detected