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:
parent
7e94554b62
commit
e5c9686c0f
1 changed files with 4 additions and 0 deletions
|
@ -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')
|
||||
|
|
Loading…
Reference in a new issue