+22Nov01=======================================================================
+1. finally fix DELETE = ^H = Backspace in console.pl
21Nov01=======================================================================
1. altered the PC16/17 generation slightly to see whether this cures Roland's
problem.
$pos = 0;
} elsif ($r eq KEY_END || $r eq "\005") {
$pos = $lth;
- } elsif ($r eq KEY_BACKSPACE || $r eq "\010" || $r eq "\0177") {
+ } elsif ($r eq KEY_BACKSPACE || $r eq "\010" || $r eq "\x7f") {
if ($pos > 0) {
my $a = substr($inbuf, 0, $pos-1);
my $b = substr($inbuf, $pos) if $pos < $lth;