mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-29 10:31:14 -03:00
Minor style fix
This commit is contained in:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user