=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/cmd-send-keys.c,v retrieving revision 1.61 retrieving revision 1.62 diff -c -r1.61 -r1.62 *** src/usr.bin/tmux/cmd-send-keys.c 2020/04/14 13:22:05 1.61 --- src/usr.bin/tmux/cmd-send-keys.c 2020/05/16 16:32:21 1.62 *************** *** 1,4 **** ! /* $OpenBSD: cmd-send-keys.c,v 1.61 2020/04/14 13:22:05 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: cmd-send-keys.c,v 1.62 2020/05/16 16:32:21 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott *************** *** 71,79 **** wme = TAILQ_FIRST(&wp->modes); if (wme == NULL || wme->mode->key_table == NULL) { ! if (options_get_number(wp->window->options, "xterm-keys")) ! key |= KEYC_XTERM; ! if (window_pane_key(wp, tc, s, wl, key, NULL) != 0) return (NULL); return (item); } --- 71,77 ---- wme = TAILQ_FIRST(&wp->modes); if (wme == NULL || wme->mode->key_table == NULL) { ! if (window_pane_key(wp, tc, s, wl, key|KEYC_XTERM, NULL) != 0) return (NULL); return (item); }