| 124 | } |
| 125 | |
| 126 | staticfn void |
| 127 | ia_addmenu(winid win, int act, char let, const char *txt) |
| 128 | { |
| 129 | anything any; |
| 130 | int clr = NO_COLOR; |
| 131 | |
| 132 | any = cg.zeroany; |
| 133 | any.a_int = act; |
| 134 | add_menu(win, &nul_glyphinfo, &any, let, 0, |
| 135 | ATR_NONE, clr, txt, MENU_ITEMFLAGS_NONE); |
| 136 | } |
| 137 | |
| 138 | /* set up a command to execute on a specific item next */ |
| 139 | staticfn void |
no test coverage detected