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

@@ -313,7 +313,7 @@ impl Dispatcher {
Ok(())
}
fn exec_subsh(&mut self, subsh: Node) -> ShResult<()> {
let blame = subsh.get_span().clone();
let _blame = subsh.get_span().clone();
let NdRule::Command { assignments, argv } = subsh.class else {
unreachable!()
};