ARGSUSED */
| 456 | |
| 457 | /* ARGSUSED */ |
| 458 | static void |
| 459 | menu_search(Widget w, XtPointer client_data, XtPointer call_data) |
| 460 | { |
| 461 | struct xwindow *wp = (struct xwindow *) client_data; |
| 462 | struct menu_info_t *menu_info = wp->menu_information; |
| 463 | |
| 464 | nhUse(w); |
| 465 | nhUse(call_data); |
| 466 | |
| 467 | search_menu(wp); |
| 468 | if (menu_info->how == PICK_ONE) |
| 469 | menu_popdown(wp); |
| 470 | } |
| 471 | |
| 472 | /* common to menu_search and menu_key */ |
| 473 | static void |
nothing calls this directly
no test coverage detected