aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/rc/input.c
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2021-10-26 21:01:41 -0700
committerNicholas Noll <nbnoll@eml.cc>2021-10-26 21:01:41 -0700
commit29b56ef4e4113bcd091b19d6926f18814162ca53 (patch)
treea4888a16927576592af13928bb805f1f2b1159d6 /sys/cmd/rc/input.c
parente34a4791b72e426b02f33496fe03be1ad81819a6 (diff)
Feat(libunicode): Added an explicit unicode library
Refactored code to pull out utf8 functions from base into a standalone library. Also left the required function inside arg.c so that code that calls ARG_BEGIN doesn't have to link to libunicode.
Diffstat (limited to 'sys/cmd/rc/input.c')
-rw-r--r--sys/cmd/rc/input.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/cmd/rc/input.c b/sys/cmd/rc/input.c
index a89dbda..56f1780 100644
--- a/sys/cmd/rc/input.c
+++ b/sys/cmd/rc/input.c
@@ -309,11 +309,11 @@ refreshsingleline(struct TerminalState *term)
char esc[64];
struct Buffer ab;
- intptr plen = term->plen;
+ intptr plen = term->plen;
int fd = term->ofd;
char *buf = term->buf;
- intptr len = term->len;
- intptr pos = term->pos;
+ intptr len = term->len;
+ intptr pos = term->pos;
while((plen+pos) >= term->cols) {
buf++;