| 210 | static Pixmap icon_pixmap = None; /* Pixmap for icon. */ |
| 211 | |
| 212 | void |
| 213 | X11_putmsghistory(const char *msg, boolean is_restoring) |
| 214 | { |
| 215 | if (WIN_MESSAGE != WIN_ERR) { |
| 216 | struct xwindow *wp = &window_list[WIN_MESSAGE]; |
| 217 | debugpline2("X11_putmsghistory('%s',%i)", msg, is_restoring); |
| 218 | if (msg) |
| 219 | append_message(wp, msg); |
| 220 | } |
| 221 | } |
| 222 | |
| 223 | char * |
| 224 | X11_getmsghistory(boolean init) |
nothing calls this directly
no test coverage detected