diff options
author | C. McEnroe | 2020-02-06 02:25:58 -0500 |
---|---|---|
committer | C. McEnroe | 2020-02-06 02:25:58 -0500 |
commit | a5a162b9c6f9c3672c6c1e0882d70191610943c8 (patch) | |
tree | 87a2067169609d26d6cb23cf41b1d10f8e4d2322 | |
parent | 8b3bf897c2b7a14ff6a4c096b9969eaeb695a9e0 (diff) |
Disable SUSP
Frees up C-z and suspending an IRC client is silly anyway.
-rw-r--r-- | ui.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ui.c b/ui.c index daa6dec..048eade 100644 --- a/ui.c +++ b/ui.c @@ -176,6 +176,7 @@ static void disableFlowControl(void) { int error = tcgetattr(STDOUT_FILENO, &term); if (error) err(EX_OSERR, "tcgetattr"); term.c_iflag &= ~IXON; + term.c_cc[VSUSP] = _POSIX_VDISABLE; term.c_cc[VDISCARD] = _POSIX_VDISABLE; error = tcsetattr(STDOUT_FILENO, TCSADRAIN, &term); if (error) err(EX_OSERR, "tcsetattr"); |