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

Diff for /src/usr.bin/tmux/cmd-send-keys.c between version 1.60 and 1.61

version 1.60, 2020/04/13 20:51:57 version 1.61, 2020/04/14 13:22:05
Line 120 
Line 120 
         if (literal) {          if (literal) {
                 ud = utf8_fromcstr(s);                  ud = utf8_fromcstr(s);
                 for (uc = ud; uc->size != 0; uc++) {                  for (uc = ud; uc->size != 0; uc++) {
                         if (utf8_combine(uc, &wc) == UTF8_DONE)                          if (utf8_combine(uc, &wc) != UTF8_DONE)
                                 continue;                                  continue;
                         after = cmd_send_keys_inject_key(item, after, wc);                          after = cmd_send_keys_inject_key(item, after, wc);
                 }                  }

Legend:
Removed from v.1.60  
changed lines
  Added in v.1.61