summaryrefslogtreecommitdiffstats
path: root/src/parser.l
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser.l')
-rw-r--r--src/parser.l7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/parser.l b/src/parser.l
index 573e387..5c0452c 100644
--- a/src/parser.l
+++ b/src/parser.l
@@ -333,6 +333,7 @@ static void vt100_parser_handle_ris(VT100Screen *vt)
vt100_screen_reset_mouse_reporting_press(vt);
vt100_screen_reset_mouse_reporting_press_release(vt);
vt100_screen_reset_mouse_reporting_button_motion(vt);
+ vt100_screen_reset_mouse_reporting_any_motion(vt);
vt100_screen_reset_mouse_reporting_sgr_mode(vt);
vt100_screen_reset_bracketed_paste(vt);
vt100_screen_reset_origin_mode(vt);
@@ -655,6 +656,9 @@ static void vt100_parser_handle_sm(VT100Screen *vt, char *buf, size_t len)
case 1002:
vt100_screen_set_mouse_reporting_button_motion(vt);
break;
+ case 1003:
+ vt100_screen_set_mouse_reporting_any_motion(vt);
+ break;
case 1006:
vt100_screen_set_mouse_reporting_sgr_mode(vt);
break;
@@ -729,6 +733,9 @@ static void vt100_parser_handle_rm(VT100Screen *vt, char *buf, size_t len)
case 1002:
vt100_screen_reset_mouse_reporting_button_motion(vt);
break;
+ case 1003:
+ vt100_screen_reset_mouse_reporting_any_motion(vt);
+ break;
case 1006:
vt100_screen_reset_mouse_reporting_sgr_mode(vt);
break;