[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.32 and 1.33

version 1.32, 2013/06/02 07:52:15 version 1.33, 2014/02/23 00:53:06
Line 305 
Line 305 
 }  }
   
 struct tty_term *  struct tty_term *
 tty_term_find(char *name, int fd, const char *overrides, char **cause)  tty_term_find(char *name, int fd, char **cause)
 {  {
         struct tty_term                         *term;          struct tty_term                         *term;
         const struct tty_term_code_entry        *ent;          const struct tty_term_code_entry        *ent;
Line 383 
Line 383 
                         break;                          break;
                 }                  }
         }          }
         tty_term_override(term, overrides);  
           /* Apply terminal overrides. */
           s = options_get_string(&global_options, "terminal-overrides");
           tty_term_override(term, s);
   
         /* Delete curses data. */          /* Delete curses data. */
         del_curterm(cur_term);          del_curterm(cur_term);

Legend:
Removed from v.1.32  
changed lines
  Added in v.1.33