diff options
author | June McEnroe <june@causal.agency> | 2020-02-06 02:25:58 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-02-06 02:25:58 -0500 |
commit | a5a162b9c6f9c3672c6c1e0882d70191610943c8 (patch) | |
tree | 87a2067169609d26d6cb23cf41b1d10f8e4d2322 /ui.c | |
parent | Search for cert and priv in config dirs (diff) | |
download | catgirl-a5a162b9c6f9c3672c6c1e0882d70191610943c8.tar.gz catgirl-a5a162b9c6f9c3672c6c1e0882d70191610943c8.zip |
Disable SUSP
Frees up C-z and suspending an IRC client is silly anyway.
Diffstat (limited to 'ui.c')
-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"); |