Changeset 796


Ignore:
Timestamp:
Feb 18, 2016, 5:02:09 PM (8 years ago)
Author:
alain
Message:

Introduce support for the DEL character in in the shell lexical analyser.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/applications/shell/shell.c

    r789 r796  
    631631            case NORMAL:
    632632            { 
    633                 if ( c == '\b' )          // backspace => remove one character from buffer
     633                if ( (c == '\b') || (c == 0x7F) )  // backspace => remove one character
    634634                {
    635635                    if (count > 0)
Note: See TracChangeset for help on using the changeset viewer.