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

Diff for /src/usr.bin/tmux/tty-keys.c between version 1.136 and 1.137

version 1.136, 2020/05/16 16:44:54 version 1.137, 2020/05/22 15:43:38
Line 800 
Line 800 
         tty->flags &= ~TTY_TIMER;          tty->flags &= ~TTY_TIMER;
   
         /* Check for focus events. */          /* Check for focus events. */
         if (key == KEYC_FOCUS_OUT) {          if (key == KEYC_FOCUS_OUT)
                 tty->client->flags &= ~CLIENT_FOCUSED;                  tty->client->flags &= ~CLIENT_FOCUSED;
                 return (1);          else if (key == KEYC_FOCUS_IN)
         } else if (key == KEYC_FOCUS_IN) {  
                 tty->client->flags |= CLIENT_FOCUSED;                  tty->client->flags |= CLIENT_FOCUSED;
                 return (1);  
         }  
   
         /* Fire the key. */          /* Fire the key. */
         if (key != KEYC_UNKNOWN) {          if (key != KEYC_UNKNOWN) {

Legend:
Removed from v.1.136  
changed lines
  Added in v.1.137