Update of /cvsroot/tmux/tmux
In directory vz-cvs-2.sog:/tmp/cvs-serv1712

Modified Files:
        window-copy.c 
Log Message:
Sync OpenBSD patchset 911:

Use button mouse mode not any for copy mode, fixes issues with
putty. From Ailin Nemui.


Index: window-copy.c
===================================================================
RCS file: /cvsroot/tmux/tmux/window-copy.c,v
retrieving revision 1.130
retrieving revision 1.131
diff -u -d -r1.130 -r1.131
--- window-copy.c       25 Apr 2011 20:34:26 -0000      1.130
+++ window-copy.c       18 May 2011 20:33:24 -0000      1.131
@@ -790,7 +790,7 @@
         * If already reading motion, move the cursor while buttons are still
         * pressed, or stop the selection on their release.
         */
-       if (s->mode & MODE_MOUSE_ANY) {
+       if (s->mode & MODE_MOUSE_BUTTON) {
                if ((m->b & MOUSE_BUTTON) != MOUSE_UP) {
                        window_copy_update_cursor(wp, m->x, m->y);
                        if (window_copy_update_selection(wp))
@@ -803,7 +803,7 @@
        /* Otherwise if other buttons pressed, start selection and motion. */
        if ((m->b & MOUSE_BUTTON) != MOUSE_UP) {
                s->mode &= ~MODE_MOUSE_STANDARD;
-               s->mode |= MODE_MOUSE_ANY;
+               s->mode |= MODE_MOUSE_BUTTON;
 
                window_copy_update_cursor(wp, m->x, m->y);
                window_copy_start_selection(wp);
@@ -813,7 +813,7 @@
        return;
 
 reset_mode:
-       s->mode &= ~MODE_MOUSE_ANY;
+       s->mode &= ~MODE_MOUSE_BUTTON;
        s->mode |= MODE_MOUSE_STANDARD;
        if (sess != NULL) {
                window_copy_copy_selection(wp);


------------------------------------------------------------------------------
What Every C/C++ and Fortran developer Should Know!
Read this article and learn how Intel has extended the reach of its 
next-generation tools to help Windows* and Linux* C/C++ and Fortran 
developers boost performance applications - including clusters. 
http://p.sf.net/sfu/intel-dev2devmay
_______________________________________________
tmux-cvs mailing list
tmux-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-cvs

Reply via email to