st-flexipatch

My st-flexipatch configuration
git clone git://git.ethandl.dev/st-flexipatch
Log | Files | Refs | README | LICENSE

commit 429ad846691c61a1c7d492e21b34ec149190dbb5
parent 18acc55f122103efcbc342f900ca4fbff9e8e076
Author: bakkeby <bakkeby@gmail.com>
Date:   Mon, 20 Apr 2020 10:48:37 +0200

Fix small typos

Diffstat:
Mst.c | 7+++----
1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/st.c b/st.c @@ -889,15 +889,14 @@ ttyread(void) { static char buf[BUFSIZ]; static int buflen = 0; - int written; - int ret; + int ret, written; /* append read bytes to unprocessed bytes */ ret = read(cmdfd, buf+buflen, LEN(buf)-buflen); switch (ret) { case 0: - fputs("Found EOF in input\n", stderr); + fputs("found EOF in input\n", stderr); exit(0); case -1: die("couldn't read from shell: %s\n", strerror(errno)); @@ -905,7 +904,7 @@ ttyread(void) buflen += ret; written = twrite(buf, buflen, 0); buflen -= written; - /* keep any uncomplete utf8 char for the next call */ + /* keep any incomplete UTF-8 byte sequence for the next call */ if (buflen > 0) memmove(buf, buf + written, buflen); return ret;