lchat: remove the OPOST flag - lchat - A line oriented chat front end for ii.
 (HTM) git clone git://git.suckless.org/lchat
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
 (DIR) commit 8340100b4c016335b15dc693c57d603a81a9831c
 (DIR) parent afd762fabb08a2afc1230bec321756d7c2946764
 (HTM) 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:
         M lchat.c                             |       1 -
       
       1 file changed, 0 insertions(+), 1 deletion(-)
       ---
 (DIR) 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;