mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-09-03 07:33:04 +00:00
apps/system/cle/cle.c: ASCII DEL should be treated by Delete-Left.
This commit is contained in:
parent
d6a3beadfb
commit
bf9a5180cd
1 changed files with 1 additions and 1 deletions
|
|
@ -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:
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue