'.' command: do nothing == rest; also the ' ' command iff 'rest_on_space' option is On */
| 2348 | /* '.' command: do nothing == rest; also the |
| 2349 | ' ' command iff 'rest_on_space' option is On */ |
| 2350 | int |
| 2351 | donull(void) |
| 2352 | { |
| 2353 | if (cmd_safety_prevention("Waiting", "a no-op (to rest)", |
| 2354 | "Are you waiting to get hit?", |
| 2355 | &gd.did_nothing_flag)) |
| 2356 | return ECMD_OK; |
| 2357 | return ECMD_TIME; /* Do nothing, but let other things happen */ |
| 2358 | } |
| 2359 | |
| 2360 | staticfn int |
| 2361 | wipeoff(void) |
nothing calls this directly
no test coverage detected