@mjd thanks that's a good point -- I'm very confused about what Ctrl-H does in practice -- to me it feels like 0x08 is just kind of some weird old cruft that has no real purpose but maybe that's not true
(if it does have a purpose I'd be interested to know what it is! I don't have a backspace key on my keyboard right now but my impression is that the backspace key is supposed to map to an ASCII DEL)
@b0rk if you type "abcdef" at a prompt and then put your cursor between c and d (abc|def) then:
0x08 (backspace) usually produces ab|def
0x7f (delete) usually produces abc|ef
@mjd