summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/options-table.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2024-08-21 04:37:43 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2024-08-21 04:37:43 +0000
commit7cc28628e8b58ce4de37738a910ac716d31928ec (patch)
tree4a8e9554c86c383f3ab573a1fc1c6e12987e048a /usr.bin/tmux/options-table.c
parent3d86e9cfa9595eb9144b99da6d0910cfd744bc70 (diff)
Set the default for extended-keys back to off because it appears emacs turns
the keys on but does not correctly handle them except in xterm (!). Also fix so that off takes effect as expected.
Diffstat (limited to 'usr.bin/tmux/options-table.c')
-rw-r--r--usr.bin/tmux/options-table.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/options-table.c b/usr.bin/tmux/options-table.c
index dd1782bc280..59cf34654aa 100644
--- a/usr.bin/tmux/options-table.c
+++ b/usr.bin/tmux/options-table.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: options-table.c,v 1.176 2024/08/21 04:17:09 nicm Exp $ */
+/* $OpenBSD: options-table.c,v 1.177 2024/08/21 04:37:42 nicm Exp $ */
/*
* Copyright (c) 2011 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -313,7 +313,7 @@ const struct options_table_entry options_table[] = {
.type = OPTIONS_TABLE_CHOICE,
.scope = OPTIONS_TABLE_SERVER,
.choices = options_table_extended_keys_list,
- .default_num = 1,
+ .default_num = 0,
.text = "Whether to request extended key sequences from terminals "
"that support it."
},