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

Diff for /src/usr.bin/tmux/Attic/xterm-keys.c between version 1.11 and 1.12

version 1.11, 2013/03/22 10:30:04 version 1.12, 2014/01/31 11:20:28
Line 133 
Line 133 
         do {          do {
                 if (*template != '_' && buf[pos] != *template)                  if (*template != '_' && buf[pos] != *template)
                         return (-1);                          return (-1);
         } while (pos++ != len && *++template != '\0');          } while (*++template != '\0' && ++pos != len);
   
         if (*template != '\0')  /* partial */          if (*template != '\0')  /* partial */
                 return (1);                  return (1);

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.12