mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:57:35 +00:00
LibC: Use \010 for erasing instead of \0177
We ignore \0177 in the terminal -- as the ANSI standard dictates. Fixes #7415
This commit is contained in:
parent
39f0739381
commit
d23425bfc0
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@
|
|||
#define CTRL(c) (c & 0x1F)
|
||||
#define CINTR CTRL('c')
|
||||
#define CQUIT 034
|
||||
#define CERASE 0177
|
||||
#define CERASE 010
|
||||
#define CKILL CTRL('u')
|
||||
#define CEOF CTRL('d')
|
||||
#define CTIME 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue