print the annotation for the current level, if it exists */
| 2486 | |
| 2487 | /* print the annotation for the current level, if it exists */ |
| 2488 | void |
| 2489 | print_level_annotation(void) |
| 2490 | { |
| 2491 | const char *annotation; |
| 2492 | |
| 2493 | if ((annotation = get_annotation(&u.uz)) != 0) |
| 2494 | You("remember this level as %s.", annotation); |
| 2495 | } |
| 2496 | |
| 2497 | /* ask user to annotate level lev. |
| 2498 | if lev is NULL, uses current level. */ |
no test coverage detected