1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:07:44 +00:00

LibVT: Rename escape$K and escape$J to EL and ED respectively

We should rename all of these functions to match the real VT100 names.
This will make it 100% easier to work on LibVT.

For reference: https://vt100.net/docs/vt100-ug/
This commit is contained in:
Andreas Kling 2020-01-25 20:53:27 +01:00
parent 4ed5c13792
commit 8c1f2d7131
2 changed files with 7 additions and 6 deletions

View file

@ -153,8 +153,8 @@ private:
void escape$C(const ParamVector&);
void escape$D(const ParamVector&);
void escape$H(const ParamVector&);
void escape$J(const ParamVector&);
void escape$K(const ParamVector&);
void ED(const ParamVector&);
void EL(const ParamVector&);
void escape$M(const ParamVector&);
void escape$P(const ParamVector&);
void escape$G(const ParamVector&);