added a slight debounce to bell bytes sent to the terminal

This commit is contained in:
2026-03-06 00:46:43 -05:00
parent e31e27f935
commit 5d827c7654
3 changed files with 27 additions and 11 deletions

View File

@@ -223,9 +223,9 @@ fn shed_interactive(args: ShedArgs) -> ShResult<()> {
readline.reset_active_widget(false)?;
}
ShErrKind::CleanExit(code) => {
QUIT_CODE.store(*code, Ordering::SeqCst);
return Ok(());
}
QUIT_CODE.store(*code, Ordering::SeqCst);
return Ok(());
}
_ => e.print_error(),
}
}