From 771d19b94aaff5a860ac5b8f4f62268537e601fe Mon Sep 17 00:00:00 2001 From: Gustavo Henrique Nihei Date: Fri, 19 Feb 2021 09:17:58 -0300 Subject: [PATCH] system/cle: Remove column offset for cursor position --- system/cle/cle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/cle/cle.c b/system/cle/cle.c index 97f9387d9..c1e1349c0 100644 --- a/system/cle/cle.c +++ b/system/cle/cle.c @@ -1196,7 +1196,7 @@ int cle(FAR char *line, const char *prompt, uint16_t linelen, return -EINVAL; } - priv.coloffs = column - 1; + priv.coloffs = column; cleinfo("row=%d column=%d\n", priv.row, column);