returns the key bound to a movement command for given DIR_ and MV_ mode */
| 3026 | |
| 3027 | /* returns the key bound to a movement command for given DIR_ and MV_ mode */ |
| 3028 | char |
| 3029 | cmd_from_dir(int dir, int mode) |
| 3030 | { |
| 3031 | return cmd_from_func(move_funcs[dir][mode]); |
| 3032 | } |
| 3033 | |
| 3034 | /* return the key bound to extended command */ |
| 3035 | char |
no test coverage detected