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

Diff for /src/usr.bin/tmux/input.c between version 1.197 and 1.198

version 1.197, 2021/12/07 07:21:40 version 1.198, 2021/12/07 07:28:44
Line 2530 
Line 2530 
                 }                  }
   
                 s = strsep(&next, ";");                  s = strsep(&next, ";");
                   if (strcmp(s, "?") == 0) {
                           c = colour_palette_get(ictx->palette, idx);
                           if (c != -1)
                                   input_osc_colour_reply(ictx, 4, c);
                           continue;
                   }
                 if ((c = input_osc_parse_colour(s)) == -1) {                  if ((c = input_osc_parse_colour(s)) == -1) {
                         s = next;                          s = next;
                         continue;                          continue;

Legend:
Removed from v.1.197  
changed lines
  Added in v.1.198