Introduction
Introduction Statistics Contact Development Disclaimer Help
tFix small typos - st - [fork] customized build of st, the simple terminal
git clone git://src.adamsgaard.dk/st
Log
Files
Refs
README
LICENSE
---
commit e997303502ddd5c26cfc41af0ff5356bffc04359
parent c1145268f6b6c6f03a8bec1c09d356d6a4eba77e
Author: Hiltjo Posthuma <[email protected]>
Date: Sat, 11 Apr 2020 13:29:48 +0200
Fix small typos
Diffstat:
M st.c | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
---
diff --git a/st.c b/st.c
t@@ -823,15 +823,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));
t@@ -839,7 +838,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;
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.