From bf9a5180cd638064bf05b352a061f97055b1f280 Mon Sep 17 00:00:00 2001 From: Dave Marples Date: Thu, 1 Aug 2019 15:26:49 -0600 Subject: [PATCH] apps/system/cle/cle.c: ASCII DEL should be treated by Delete-Left. --- 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 d1871863b..e52306c49 100644 --- a/system/cle/cle.c +++ b/system/cle/cle.c @@ -991,7 +991,6 @@ static int cle_editloop(FAR struct cle_s *priv) break; case KEY_DEL: /* Delete 1 character at the cursor */ - case ASCII_DEL: { if (priv->curpos < priv->nchars) { @@ -1023,6 +1022,7 @@ static int cle_editloop(FAR struct cle_s *priv) } break; + case ASCII_DEL: case KEY_DELLEFT: /* Delete 1 character before the cursor */ //case ASCII_BS: {