Differences From Artifact [2703ba3edf]:
- File src/console.m — part of check-in [b250dfa8d4] at 2025-03-20 21:18:29 on branch trunk — Convert more files to pure Objective-C (user: js, size: 5773) [annotate] [blame] [check-ins using]
- File src/console.mm — part of check-in [ef1d7e47f7] at 2025-03-20 20:38:43 on branch trunk — Remove all default arguments from protos.h (user: js, size: 5773) [annotate] [blame] [check-ins using]
To Artifact [1ac50365c9]:
- File
src/console.m
— part of check-in
[6b85eefc85]
at
2025-03-23 02:47:40
on branch trunk
— Remove loop[ijkl]
They confused clang-format a lot. (user: js, size: 5786) [annotate] [blame] [check-ins using]
91 92 93 94 95 96 97 | if (nd == ndraw) break; } i++; } | | < < | 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | if (nd == ndraw) break; } i++; } for (int j = 0; j < nd; j++) draw_text(refs[j], FONTH / 3, (FONTH / 4 * 5) * (nd - j - 1) + FONTH / 3, 2); } // keymap is defined externally in keymap.cfg static OFMutableArray<KeyMapping *> *keyMappings = nil; void |