used by getpos() to accept mouse input as well as keyboard input */
| 5285 | |
| 5286 | /* used by getpos() to accept mouse input as well as keyboard input */ |
| 5287 | char |
| 5288 | readchar_poskey(coordxy *x, coordxy *y, int *mod) |
| 5289 | { |
| 5290 | char ch; |
| 5291 | |
| 5292 | program_state.input_state = getposInp; |
| 5293 | ch = readchar_core(x, y, mod); |
| 5294 | return ch; |
| 5295 | } |
| 5296 | |
| 5297 | /* '_' command, #travel, via keyboard rather than mouse click */ |
| 5298 | staticfn int |
no test coverage detected