| 756 | } |
| 757 | |
| 758 | void process_command_on_record(command_type cmd) |
| 759 | { |
| 760 | const int key = command_to_key(cmd); |
| 761 | if (key != '\0') |
| 762 | for (key_recorder *recorder : recorders) |
| 763 | recorder->add_key(key); |
| 764 | process_command(cmd); |
| 765 | } |
| 766 | |
| 767 | static void write_map(FILE *f, const macromap &mp, const char *key) |
| 768 | { |
no test coverage detected