=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/input.c,v retrieving revision 1.32 retrieving revision 1.33 diff -u -r1.32 -r1.33 --- src/usr.bin/tmux/input.c 2010/12/29 21:49:06 1.32 +++ src/usr.bin/tmux/input.c 2011/01/03 23:35:21 1.33 @@ -1,4 +1,4 @@ -/* $OpenBSD: input.c,v 1.32 2010/12/29 21:49:06 nicm Exp $ */ +/* $OpenBSD: input.c,v 1.33 2011/01/03 23:35:21 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -1161,6 +1161,9 @@ case 1003: screen_write_mousemode_off(&ictx->ctx); break; + case 1005: + screen_write_utf8mousemode(&ictx->ctx, 0); + break; case 1049: window_pane_alternate_off(wp, &ictx->cell); break; @@ -1208,6 +1211,9 @@ break; case 1003: screen_write_mousemode_on(&ictx->ctx, MODE_MOUSE_ANY); + break; + case 1005: + screen_write_utf8mousemode(&ictx->ctx, 1); break; case 1049: window_pane_alternate_on(wp, &ictx->cell);