[BACK]Return to server-client.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/server-client.c between version 1.47 and 1.48

version 1.47, 2011/01/01 01:12:09 version 1.48, 2011/01/03 23:35:21
Line 451 
Line 451 
         if (TAILQ_NEXT(TAILQ_FIRST(&w->panes), entry) != NULL &&          if (TAILQ_NEXT(TAILQ_FIRST(&w->panes), entry) != NULL &&
             options_get_number(oo, "mouse-select-pane"))              options_get_number(oo, "mouse-select-pane"))
                 mode |= MODE_MOUSE_STANDARD;                  mode |= MODE_MOUSE_STANDARD;
   
           /*
            * Set UTF-8 mouse input if required. If the terminal is UTF-8, the
            * user has set mouse-utf8 and any mouse mode is in effect, turn on
            * UTF-8 mouse input. If the receiving terminal hasn't requested it
            * (that is, it isn't in s->mode), then it'll be converted in
            * input_mouse.
            */
           if ((c->tty.flags & TTY_UTF8) &&
               (mode & ALL_MOUSE_MODES) && options_get_number(oo, "mouse-utf8"))
                   mode |= MODE_MOUSE_UTF8;
           else
                   mode &= ~MODE_MOUSE_UTF8;
   
           /* Set the terminal mode and reset attributes. */
         tty_update_mode(&c->tty, mode);          tty_update_mode(&c->tty, mode);
         tty_reset(&c->tty);          tty_reset(&c->tty);
 }  }

Legend:
Removed from v.1.47  
changed lines
  Added in v.1.48