ACTUALLY alphabetize...

This commit is contained in:
Michael Jumper 2013-05-21 00:47:55 -07:00
parent c1b0e3bb3b
commit 4763f029a4

View File

@ -379,6 +379,12 @@ int guac_terminal_csi(guac_terminal* term, char c) {
break;
/* G: Move cursor, current row */
case 'G':
col = argv[0]; if (col != 0) col--;
term->cursor_col = col;
break;
/* H: Move cursor */
case 'H':
@ -389,12 +395,6 @@ int guac_terminal_csi(guac_terminal* term, char c) {
term->cursor_col = col;
break;
/* G: Move cursor, current row */
case 'G':
col = argv[0]; if (col != 0) col--;
term->cursor_col = col;
break;
/* J: Erase display */
case 'J':