[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.118 and 1.119

version 1.118, 2020/01/12 21:07:07 version 1.119, 2020/01/12 22:00:20
Line 52 
Line 52 
                     size_t *);                      size_t *);
 static int      tty_keys_device_attributes(struct tty *, const char *, size_t,  static int      tty_keys_device_attributes(struct tty *, const char *, size_t,
                     size_t *);                      size_t *);
   static int      tty_keys_device_status_report(struct tty *, const char *,
                       size_t, size_t *);
   
 /* Default raw keys. */  /* Default raw keys. */
 struct tty_default_key_raw {  struct tty_default_key_raw {
Line 607 
Line 609 
                 goto partial_key;                  goto partial_key;
         }          }
   
           /* Is this a device status report response? */
           switch (tty_keys_device_status_report(tty, buf, len, &size)) {
           case 0:         /* yes */
                   key = KEYC_UNKNOWN;
                   goto complete_key;
           case -1:        /* no, or not valid */
                   break;
           case 1:         /* partial */
                   goto partial_key;
           }
   
         /* Is this a mouse key press? */          /* Is this a mouse key press? */
         switch (tty_keys_mouse(tty, buf, len, &size, &m)) {          switch (tty_keys_mouse(tty, buf, len, &size, &m)) {
         case 0:         /* yes */          case 0:         /* yes */
Line 1051 
Line 1064 
         for (i = 1; i < n; i++)          for (i = 1; i < n; i++)
                 log_debug("%s: DA feature: %d", c->name, p[i]);                  log_debug("%s: DA feature: %d", c->name, p[i]);
         log_debug("%s: received DA %.*s", c->name, (int)*size, buf);          log_debug("%s: received DA %.*s", c->name, (int)*size, buf);
           tty_set_flags(tty, flags);
           return (0);
   }
   
   /*
    * Handle device status report input. Returns 0 for success, -1 for failure, 1
    * for partial.
    */
   static int
   tty_keys_device_status_report(struct tty *tty, const char *buf, size_t len,
       size_t *size)
   {
           struct client   *c = tty->client;
           u_int            i;
           char             tmp[64];
           int              flags = 0;
   
           *size = 0;
   
           /* First three bytes are always \033[. */
           if (buf[0] != '\033')
                   return (-1);
           if (len == 1)
                   return (1);
           if (buf[1] != '[')
                   return (-1);
           if (len == 2)
                   return (1);
   
           /* Copy the rest up to a 'n'. */
           for (i = 0; i < (sizeof tmp) - 1 && buf[2 + i] != 'n'; i++) {
                   if (2 + i == len)
                           return (1);
                   tmp[i] = buf[2 + i];
           }
           if (i == (sizeof tmp) - 1)
                   return (-1);
           tmp[i] = '\0';
           *size = 3 + i;
   
           /* Set terminal flags. */
           if (strncmp(tmp, "ITERM2 ", 7) == 0)
                   flags |= TERM_DECSLRM;
           log_debug("%s: received DSR %.*s", c->name, (int)*size, buf);
         tty_set_flags(tty, flags);          tty_set_flags(tty, flags);
         return (0);          return (0);
 }  }

Legend:
Removed from v.1.118  
changed lines
  Added in v.1.119