Minor style fix

This commit is contained in:
Johannes Altmanninger
2025-01-08 10:22:00 +01:00
parent 4def0ac616
commit e6d57f2fb2

View File

@@ -2089,9 +2089,9 @@ fn readline(&mut self, nchars: Option<NonZeroUsize>) -> Option<WString> {
}
}
static queried: RelaxedAtomicBool = RelaxedAtomicBool::new(false);
if !queried.load() {
queried.store(true);
static QUERIED: RelaxedAtomicBool = RelaxedAtomicBool::new(false);
if !QUERIED.load() {
QUERIED.store(true);
let mut out = Outputter::stdoutput().borrow_mut();
out.begin_buffering();
// Query for kitty keyboard protocol support.