=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tty-term.c,v retrieving revision 1.32 retrieving revision 1.33 diff -c -r1.32 -r1.33 *** src/usr.bin/tmux/tty-term.c 2013/06/02 07:52:15 1.32 --- src/usr.bin/tmux/tty-term.c 2014/02/23 00:53:06 1.33 *************** *** 1,4 **** ! /* $OpenBSD: tty-term.c,v 1.32 2013/06/02 07:52:15 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: tty-term.c,v 1.33 2014/02/23 00:53:06 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott *************** *** 305,311 **** } struct tty_term * ! tty_term_find(char *name, int fd, const char *overrides, char **cause) { struct tty_term *term; const struct tty_term_code_entry *ent; --- 305,311 ---- } struct tty_term * ! tty_term_find(char *name, int fd, char **cause) { struct tty_term *term; const struct tty_term_code_entry *ent; *************** *** 383,389 **** break; } } ! tty_term_override(term, overrides); /* Delete curses data. */ del_curterm(cur_term); --- 383,392 ---- break; } } ! ! /* Apply terminal overrides. */ ! s = options_get_string(&global_options, "terminal-overrides"); ! tty_term_override(term, s); /* Delete curses data. */ del_curterm(cur_term);