summary refs log tree commit diff
path: root/ui.c
diff options
context:
space:
mode:
authorC. McEnroe2020-02-06 02:25:58 -0500
committerC. McEnroe2020-02-06 02:25:58 -0500
commita5a162b9c6f9c3672c6c1e0882d70191610943c8 (patch)
tree87a2067169609d26d6cb23cf41b1d10f8e4d2322 /ui.c
parent8b3bf897c2b7a14ff6a4c096b9969eaeb695a9e0 (diff)
Disable SUSP
Frees up C-z and suspending an IRC client is silly anyway.
Diffstat (limited to 'ui.c')
-rw-r--r--ui.c1
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");