1
Fork 0
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:
Daniel Bertalan 2021-05-23 19:24:46 +02:00 committed by Andreas Kling
parent 39f0739381
commit d23425bfc0

View file

@ -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