summaryrefslogtreecommitdiffstats
path: root/src/parser.l
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser.l')
-rw-r--r--src/parser.l10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/parser.l b/src/parser.l
index 78de77e..25cb21f 100644
--- a/src/parser.l
+++ b/src/parser.l
@@ -642,22 +642,22 @@ static void vt100_parser_handle_rm(VT100Screen *vt, char *buf, size_t len)
case '?':
switch (params[i]) {
case 1:
- vt100_screen_set_application_cursor(vt);
+ vt100_screen_reset_application_cursor(vt);
break;
case 9:
- vt100_screen_set_mouse_reporting_press(vt);
+ vt100_screen_reset_mouse_reporting_press(vt);
break;
case 25:
vt100_screen_hide_cursor(vt);
break;
case 1000:
- vt100_screen_set_mouse_reporting_press_release(vt);
+ vt100_screen_reset_mouse_reporting_press_release(vt);
break;
case 1002:
- vt100_screen_set_mouse_reporting_button_motion(vt);
+ vt100_screen_reset_mouse_reporting_button_motion(vt);
break;
case 1006:
- vt100_screen_set_mouse_reporting_sgr_mode(vt);
+ vt100_screen_reset_mouse_reporting_sgr_mode(vt);
break;
case 47:
case 1049: