1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:07:43 +00:00

LibVT: Rename escape$c to DA (Device Attributes)

This commit is contained in:
Linus Groh 2020-01-26 13:48:11 +00:00 committed by Andreas Kling
parent dcb5bf9e50
commit 2edd8e37ae
2 changed files with 3 additions and 3 deletions

View file

@ -510,7 +510,7 @@ void Terminal::escape$L(const ParamVector& params)
m_need_full_flush = true;
}
void Terminal::escape$c(const ParamVector&)
void Terminal::DA(const ParamVector&)
{
// DA - Device Attributes
emit_string("\033[?1;0c");
@ -685,7 +685,7 @@ void Terminal::execute_escape_sequence(u8 final)
escape$h_l(false, question_param, params);
break;
case 'c':
escape$c(params);
DA(params);
break;
case 'f':
escape$f(params);