=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tty-term.c,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- src/usr.bin/tmux/tty-term.c 2009/11/12 08:05:23 1.14 +++ src/usr.bin/tmux/tty-term.c 2009/11/26 14:46:08 1.15 @@ -1,4 +1,4 @@ -/* $OpenBSD: tty-term.c,v 1.14 2009/11/12 08:05:23 nicm Exp $ */ +/* $OpenBSD: tty-term.c,v 1.15 2009/11/26 14:46:08 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott @@ -386,21 +386,6 @@ /* These can be emulated so one of the two is required. */ if (!tty_term_has(term, TTYC_CUD1) && !tty_term_has(term, TTYC_CUD)) { xasprintf(cause, "terminal does not support cud1 or cud"); - goto error; - } - if (!tty_term_has(term, TTYC_IL1) && !tty_term_has(term, TTYC_IL)) { - xasprintf(cause, "terminal does not support il1 or il"); - goto error; - } - if (!tty_term_has(term, TTYC_DL1) && !tty_term_has(term, TTYC_DL)) { - xasprintf(cause, "terminal does not support dl1 or dl"); - goto error; - } - if (!tty_term_has(term, TTYC_ICH1) && - !tty_term_has(term, TTYC_ICH) && (!tty_term_has(term, TTYC_SMIR) || - !tty_term_has(term, TTYC_RMIR))) { - xasprintf(cause, - "terminal does not support ich1 or ich or smir and rmir"); goto error; }