mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-21 17:27:58 +08:00
fish_key_reader: Remove debug messages
These are related to *signal handlers* in fish_key_reader, and I don't think this code needed to be touched since it was added.
This commit is contained in:
parent
fe931aeea7
commit
0c49f45028
@ -274,13 +274,6 @@ static void install_our_signal_handlers() {
|
||||
for (int signo = 1; signo < 32; signo++) {
|
||||
if (sigaction(signo, &new_sa, &old_sa) != -1) {
|
||||
std::memcpy(&old_sigactions[signo], &old_sa, sizeof(old_sa));
|
||||
if (old_sa.sa_handler == SIG_IGN) {
|
||||
debug(3, "signal #%d (%ls) was being ignored", signo, sig2wcs(signo));
|
||||
}
|
||||
if (old_sa.sa_flags && ~SA_SIGINFO != 0) {
|
||||
debug(3, L"signal #%d (%ls) handler had flags 0x%X", signo, sig2wcs(signo),
|
||||
old_sa.sa_flags);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user