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

Diff for /src/usr.bin/tmux/key-string.c between version 1.30 and 1.31

version 1.30, 2015/11/14 10:56:31 version 1.31, 2015/11/14 10:57:59
Line 176 
Line 176 
                 if (utf8_open(&ud, (u_char)*string)) {                  if (utf8_open(&ud, (u_char)*string)) {
                         if (strlen(string) != ud.size)                          if (strlen(string) != ud.size)
                                 return (KEYC_NONE);                                  return (KEYC_NONE);
                           more = 1;
                         for (i = 1; i < ud.size; i++)                          for (i = 1; i < ud.size; i++)
                                 more = utf8_append(&ud, (u_char)string[i]);                                  more = utf8_append(&ud, (u_char)string[i]);
                         if (more != 0)                          if (more != 0)

Legend:
Removed from v.1.30  
changed lines
  Added in v.1.31