[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.105 and 1.106

version 1.105, 2018/10/28 15:34:27 version 1.106, 2019/02/16 19:04:34
Line 464 
Line 464 
 static struct tty_key *  static struct tty_key *
 tty_keys_find1(struct tty_key *tk, const char *buf, size_t len, size_t *size)  tty_keys_find1(struct tty_key *tk, const char *buf, size_t len, size_t *size)
 {  {
           /* If no data, no match. */
           if (len == 0)
                   return (NULL);
   
         /* If the node is NULL, this is the end of the tree. No match. */          /* If the node is NULL, this is the end of the tree. No match. */
         if (tk == NULL)          if (tk == NULL)
                 return (NULL);                  return (NULL);

Legend:
Removed from v.1.105  
changed lines
  Added in v.1.106