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

Diff for /src/usr.bin/tmux/tty-term.c between version 1.61 and 1.62

version 1.61, 2019/03/18 11:58:40 version 1.62, 2019/04/23 20:36:55
Line 417 
Line 417 
         struct tty_code                         *code;          struct tty_code                         *code;
         struct options_entry                    *o;          struct options_entry                    *o;
         struct options_array_item               *a;          struct options_array_item               *a;
           union options_value                     *ov;
         u_int                                    i;          u_int                                    i;
         int                                      n, error;          int                                      n, error;
         const char                              *s, *acs;          const char                              *s, *acs;
Line 494 
Line 495 
         o = options_get_only(global_options, "terminal-overrides");          o = options_get_only(global_options, "terminal-overrides");
         a = options_array_first(o);          a = options_array_first(o);
         while (a != NULL) {          while (a != NULL) {
                 s = options_array_item_value(a);                  ov = options_array_item_value(a);
                 if (s != NULL)                  if (ov != NULL)
                         tty_term_override(term, s);                          tty_term_override(term, ov->string);
                 a = options_array_next(a);                  a = options_array_next(a);
         }          }
   

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