1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-11-01 11:16:16 +00:00

New guess: writing to the keyboard implicitly enables communications.

This commit is contained in:
Thomas Harte
2025-09-09 23:38:21 -04:00
parent 7f4047772c
commit 4765a39759
3 changed files with 33 additions and 30 deletions

View File

@@ -176,10 +176,10 @@ public:
~LogLine() {
thread_local RepeatAccumulator accumulator;
if(output_ == accumulator.last && source == accumulator.source && stream_ == accumulator.stream) {
++accumulator.count;
return;
}
// if(output_ == accumulator.last && source == accumulator.source && stream_ == accumulator.stream) {
// ++accumulator.count;
// return;
// }
if(!accumulator.last.empty()) {
const char *const unadorned_prefix = prefix(accumulator.source);