[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.147 and 1.148

version 1.147, 2021/06/10 07:21:10 version 1.148, 2021/08/06 09:19:02
Line 820 
Line 820 
         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;
         else if (key == KEYC_FOCUS_IN)                  notify_client("client-focus-out", c);
           } else if (key == KEYC_FOCUS_IN) {
                 tty->client->flags |= CLIENT_FOCUSED;                  tty->client->flags |= CLIENT_FOCUSED;
                   notify_client("client-focus-in", c);
           }
   
         /* Fire the key. */          /* Fire the key. */
         if (key != KEYC_UNKNOWN) {          if (key != KEYC_UNKNOWN) {

Legend:
Removed from v.1.147  
changed lines
  Added in v.1.148