ACTUALLY alphabetize...
This commit is contained in:
parent
c1b0e3bb3b
commit
4763f029a4
@ -379,6 +379,12 @@ int guac_terminal_csi(guac_terminal* term, char c) {
|
|||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
/* G: Move cursor, current row */
|
||||||
|
case 'G':
|
||||||
|
col = argv[0]; if (col != 0) col--;
|
||||||
|
term->cursor_col = col;
|
||||||
|
break;
|
||||||
|
|
||||||
/* H: Move cursor */
|
/* H: Move cursor */
|
||||||
case 'H':
|
case 'H':
|
||||||
|
|
||||||
@ -389,12 +395,6 @@ int guac_terminal_csi(guac_terminal* term, char c) {
|
|||||||
term->cursor_col = col;
|
term->cursor_col = col;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
/* G: Move cursor, current row */
|
|
||||||
case 'G':
|
|
||||||
col = argv[0]; if (col != 0) col--;
|
|
||||||
term->cursor_col = col;
|
|
||||||
break;
|
|
||||||
|
|
||||||
/* J: Erase display */
|
/* J: Erase display */
|
||||||
case 'J':
|
case 'J':
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user