ttydefaults.h: Fix CSTATUS to control-t

4.4BSD actually defaults CSTATUS to control-t, so our generic header should
as well.
This commit is contained in:
Samuel Thibault 2022-01-07 00:19:42 +01:00
parent e5fa62b8db
commit d5b0046e3d
1 changed files with 1 additions and 5 deletions

View File

@ -61,11 +61,7 @@
#endif #endif
#define CERASE 0177 #define CERASE 0177
#define CINTR CTRL('c') #define CINTR CTRL('c')
#ifdef _POSIX_VDISABLE #define CSTATUS CTRL('t')
# define CSTATUS _POSIX_VDISABLE
#else
# define CSTATUS ((unsigned char)'\377') /* XXX avoid _POSIX_VDISABLE */
#endif
#define CKILL CTRL('u') #define CKILL CTRL('u')
#define CMIN 1 #define CMIN 1
#define CQUIT 034 /* FS, ^\ */ #define CQUIT 034 /* FS, ^\ */