| 704 | } |
| 705 | |
| 706 | static const char * do_block_building(const tile_context &ctx, const char *s, |
| 707 | bool at_target_pos, |
| 708 | bool *add_size = NULL) { |
| 709 | if(!at_target_pos) { |
| 710 | return if_pretty(ctx, "`"); |
| 711 | } |
| 712 | if (add_size) |
| 713 | *add_size = true; |
| 714 | return s; |
| 715 | } |
| 716 | |
| 717 | static const char * do_extent_building(const tile_context &ctx, const char *s, |
| 718 | bool at_target_pos, |
no test coverage detected