Moved declaration of old_esc_mode_timeout variable to the proper file section.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andrew Borodin 2011-11-25 11:54:21 +03:00 committed by Slava Zanko
parent 5aaaa57883
commit d305e5099c

View File

@ -82,6 +82,8 @@
int mou_auto_repeat = 100;
int double_click_speed = 250;
int old_esc_mode = 0;
/* timeout for old_esc_mode in usec */
int old_esc_mode_timeout = 1000000; /* settable via env */
int use_8th_bit_as_meta = 0;
/* This table is a mapping between names and the constants we use
@ -501,9 +503,6 @@ static key_define_t qansi_key_defines[] = {
{0, NULL, MCKEY_NOACTION},
};
/* timeout for old_esc_mode in usec */
int old_esc_mode_timeout = 1000000; /* settable via env */
/* This holds all the key definitions */
static key_def *keys = NULL;