(xev)
| 3084 | #define any_init M_Init |
| 3085 | |
| 3086 | static int |
| 3087 | any_handler(xev) |
| 3088 | XEVENT *xev; |
| 3089 | { |
| 3090 | int ev = xev->ev_mwich; |
| 3091 | |
| 3092 | if (ev & MU_MESAG) { |
| 3093 | int *buf = xev->ev_mmgpbuf; |
| 3094 | |
| 3095 | if (*buf == OBJC_EDITED) |
| 3096 | my_close_dialog(*(DIAINFO **) &buf[4], FALSE); |
| 3097 | else |
| 3098 | ev &= ~MU_MESAG; |
| 3099 | } |
| 3100 | return (ev); |
| 3101 | } |
| 3102 | |
| 3103 | int |
| 3104 | send_yn_esc(char ch) |
nothing calls this directly
no test coverage detected