tty/pty: change back default CERASE to ^H

Alternatives should be considered (such as changing our keymaps to
better match NetBSD) in due time, but for now, the current default
is incredibly annoying!

Change-Id: I4cab5d6a9f39983ee8aa80362768fdb9cf3db948
This commit is contained in:
David van Moolenbroek 2014-08-25 19:33:27 +00:00
parent 7e94554b62
commit e5c9686c0f

View file

@ -61,7 +61,11 @@
#define CTRL(x) (x&037)
#define CEOF CTRL('d')
#define CEOL ((unsigned char)'\377') /* XXX avoid _POSIX_VDISABLE */
#if defined(__minix)
#define CERASE CTRL('h')
#else
#define CERASE 0177
#endif /* defined(__minix) */
#define CINTR CTRL('c')
#define CSTATUS CTRL('t')
#define CKILL CTRL('u')