[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.164 and 1.165

version 1.164, 2019/11/14 08:00:30 version 1.165, 2019/11/15 11:16:53
Line 132 
Line 132 
 static void     input_reset_cell(struct input_ctx *);  static void     input_reset_cell(struct input_ctx *);
   
 static void     input_osc_4(struct input_ctx *, const char *);  static void     input_osc_4(struct input_ctx *, const char *);
   static void     input_osc_7(struct input_ctx *, const char *);
 static void     input_osc_10(struct input_ctx *, const char *);  static void     input_osc_10(struct input_ctx *, const char *);
 static void     input_osc_11(struct input_ctx *, const char *);  static void     input_osc_11(struct input_ctx *, const char *);
 static void     input_osc_52(struct input_ctx *, const char *);  static void     input_osc_52(struct input_ctx *, const char *);
Line 2210 
Line 2211 
                 break;                  break;
         case 4:          case 4:
                 input_osc_4(ictx, p);                  input_osc_4(ictx, p);
                   break;
           case 7:
                   if (utf8_isvalid(p)) {
                           screen_set_path(sctx->s, p);
                           server_status_window(ictx->wp->window);
                   }
                 break;                  break;
         case 10:          case 10:
                 input_osc_10(ictx, p);                  input_osc_10(ictx, p);

Legend:
Removed from v.1.164  
changed lines
  Added in v.1.165