lchat

A line oriented chat front end for ii.
git clone git://git.suckless.org/lchat
Log | Files | Refs | README

commit 8340100b4c016335b15dc693c57d603a81a9831c
parent afd762fabb08a2afc1230bec321756d7c2946764
Author: Tom Schwindl <schwindl@posteo.de>
Date:   Sun,  2 Oct 2022 11:10:32 +0200

lchat: remove the OPOST flag

OPOST created some strange behavior on some systems, thus, remove it.

Diffstat:
Mlchat.c | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/lchat.c b/lchat.c @@ -257,7 +257,6 @@ main(int argc, char *argv[]) die("atexit:"); term.c_iflag &= ~(BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON); - term.c_oflag &= ~OPOST; term.c_lflag &= ~(ECHO|ICANON|IEXTEN); term.c_cflag &= ~(CSIZE|PARENB); term.c_cflag |= CS8;