mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-03-22 14:39:24 -05:00
Fix misparse of ESC[?9r sequence; I must find out what it _should_ do
[originally from svn r176]
This commit is contained in:
parent
585c14f365
commit
97731141ad
@ -929,7 +929,7 @@ void term_out(void) {
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'r': /* set scroll margins */
|
case 'r': /* set scroll margins */
|
||||||
if (esc_nargs <= 2) {
|
if (!esc_query && esc_nargs <= 2) {
|
||||||
int top, bot;
|
int top, bot;
|
||||||
top = def(esc_args[0], 1) - 1;
|
top = def(esc_args[0], 1) - 1;
|
||||||
if (top < 0)
|
if (top < 0)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user