File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -279,8 +279,9 @@ void Terminal::escape$r(const ParamVector& params)
279
279
set_cursor (0 , 0 );
280
280
}
281
281
282
- void Terminal::escape$H (const ParamVector& params)
282
+ void Terminal::CUP (const ParamVector& params)
283
283
{
284
+ // CUP – Cursor Position
284
285
unsigned row = 1 ;
285
286
unsigned col = 1 ;
286
287
if (params.size () >= 1 )
@@ -626,7 +627,7 @@ void Terminal::execute_escape_sequence(u8 final)
626
627
CUB (params);
627
628
break ;
628
629
case ' H' :
629
- escape$ H (params);
630
+ CUP (params);
630
631
break ;
631
632
case ' J' :
632
633
ED (params);
Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ class Terminal {
152
152
void CUD (const ParamVector&);
153
153
void CUF (const ParamVector&);
154
154
void CUB (const ParamVector&);
155
- void escape$H (const ParamVector&);
155
+ void CUP (const ParamVector&);
156
156
void ED (const ParamVector&);
157
157
void EL (const ParamVector&);
158
158
void escape$M(const ParamVector&);
You can’t perform that action at this time.
0 commit comments