| 1356 | } |
| 1357 | |
| 1358 | void |
| 1359 | X11_mark_synch(void) |
| 1360 | { |
| 1361 | if (x_inited) { |
| 1362 | /* |
| 1363 | * The window document is unclear about the status of text |
| 1364 | * that has been pline()d but not displayed w/display_nhwindow(). |
| 1365 | * Both the main and tty code assume that a pline() followed |
| 1366 | * by mark_synch() results in the text being seen, even if |
| 1367 | * display_nhwindow() wasn't called. Duplicate this behavior. |
| 1368 | */ |
| 1369 | if (WIN_MESSAGE != WIN_ERR) |
| 1370 | display_message_window(&window_list[WIN_MESSAGE]); |
| 1371 | XSync(XtDisplay(toplevel), False); |
| 1372 | } |
| 1373 | } |
| 1374 | |
| 1375 | void |
| 1376 | X11_wait_synch(void) |
no test coverage detected