diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-12-16 01:09:01 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-12-16 01:09:01 +0000 |
commit | 90d40e27daaf2d2e5e0ebeffa8b5865d9536df80 (patch) | |
tree | 2fcf5ab6827af7a4dd9a03db57200cb2f0f325b5 /cmd-set-option.c | |
parent | ef3e483a0d84d3e38be032256c5e0f69dba77f75 (diff) | |
download | rtmux-90d40e27daaf2d2e5e0ebeffa8b5865d9536df80.tar.gz rtmux-90d40e27daaf2d2e5e0ebeffa8b5865d9536df80.tar.bz2 rtmux-90d40e27daaf2d2e5e0ebeffa8b5865d9536df80.zip |
Sync OpenBSD patchset 587:
New server option, escape-time, to set the timeout used to detect if escapes
are alone or part of a function key or meta sequence.
Diffstat (limited to 'cmd-set-option.c')
-rw-r--r-- | cmd-set-option.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd-set-option.c b/cmd-set-option.c index ff578542..d7ec75db 100644 --- a/cmd-set-option.c +++ b/cmd-set-option.c @@ -1,4 +1,4 @@ -/* $Id: cmd-set-option.c,v 1.91 2009-12-12 01:01:11 tcunha Exp $ */ +/* $Id: cmd-set-option.c,v 1.92 2009-12-16 01:09:01 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -74,6 +74,7 @@ const char *set_option_bell_action_list[] = { }; const struct set_option_entry set_option_table[] = { + { "escape-time", SET_OPTION_NUMBER, 0, INT_MAX, NULL }, { "quiet", SET_OPTION_FLAG, 0, 0, NULL }, { NULL, 0, 0, 0, NULL } }; |