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

LibVT: Rename EscapeState::ExpectBracket => GotEscape

Seems like there are many escape sequences that don't start with
brackets, so let's call the post-escape state "GotEscape" instead. :^)
This commit is contained in:
Andreas Kling 2020-01-25 20:02:31 +01:00
parent 897ad1b927
commit 0d191aae13
2 changed files with 3 additions and 3 deletions

View file

@ -200,7 +200,7 @@ private:
enum EscapeState {
Normal,
ExpectBracket,
GotEscape,
ExpectParameter,
ExpectIntermediate,
ExpectFinal,