| 156 | COMMAND(keymap, "is"); |
| 157 | |
| 158 | keym *findbind(const char *key) |
| 159 | { |
| 160 | enumerate(keyms, keym, km, if(!strcasecmp(km.name, key)) return &km;); |
| 161 | return NULL; |
| 162 | } |
| 163 | |
| 164 | keym **findbinda(const char *action, int type) |
| 165 | { |
no outgoing calls
no test coverage detected