mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 02:07:35 +00:00
LibVT: Rename escape$c to DA (Device Attributes)
This commit is contained in:
parent
dcb5bf9e50
commit
2edd8e37ae
2 changed files with 3 additions and 3 deletions
|
@ -510,7 +510,7 @@ void Terminal::escape$L(const ParamVector& params)
|
||||||
m_need_full_flush = true;
|
m_need_full_flush = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Terminal::escape$c(const ParamVector&)
|
void Terminal::DA(const ParamVector&)
|
||||||
{
|
{
|
||||||
// DA - Device Attributes
|
// DA - Device Attributes
|
||||||
emit_string("\033[?1;0c");
|
emit_string("\033[?1;0c");
|
||||||
|
@ -685,7 +685,7 @@ void Terminal::execute_escape_sequence(u8 final)
|
||||||
escape$h_l(false, question_param, params);
|
escape$h_l(false, question_param, params);
|
||||||
break;
|
break;
|
||||||
case 'c':
|
case 'c':
|
||||||
escape$c(params);
|
DA(params);
|
||||||
break;
|
break;
|
||||||
case 'f':
|
case 'f':
|
||||||
escape$f(params);
|
escape$f(params);
|
||||||
|
|
|
@ -170,7 +170,7 @@ private:
|
||||||
void escape$T(const ParamVector&);
|
void escape$T(const ParamVector&);
|
||||||
void escape$L(const ParamVector&);
|
void escape$L(const ParamVector&);
|
||||||
void escape$h_l(bool, bool, const ParamVector&);
|
void escape$h_l(bool, bool, const ParamVector&);
|
||||||
void escape$c(const ParamVector&);
|
void DA(const ParamVector&);
|
||||||
void escape$f(const ParamVector&);
|
void escape$f(const ParamVector&);
|
||||||
void NEL();
|
void NEL();
|
||||||
void IND();
|
void IND();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue