the #invoke command */
| 1746 | |
| 1747 | /* the #invoke command */ |
| 1748 | int |
| 1749 | doinvoke(void) |
| 1750 | { |
| 1751 | struct obj *obj; |
| 1752 | |
| 1753 | obj = getobj("invoke", invoke_ok, GETOBJ_PROMPT); |
| 1754 | if (!obj) |
| 1755 | return ECMD_CANCEL; |
| 1756 | if (!retouch_object(&obj, FALSE)) |
| 1757 | return ECMD_TIME; |
| 1758 | return arti_invoke(obj); |
| 1759 | } |
| 1760 | |
| 1761 | staticfn void |
| 1762 | nothing_special(struct obj *obj) |
nothing calls this directly
no test coverage detected