summaryrefslogtreecommitdiff
path: root/src/os_msdos.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-03-24 22:21:52 +0000
committerBram Moolenaar <Bram@vim.org>2006-03-24 22:21:52 +0000
commitc01140a1a069caf3ced83eac7d4866048c4b723e (patch)
tree0620c08894dcaf985d74e3cb76c682aecd7fb8ae /src/os_msdos.c
parentdb552d60ec4613d5537d3ebdcc4130f1591c0589 (diff)
downloadvim-git-c01140a1a069caf3ced83eac7d4866048c4b723e.tar.gz
updated for version 7.0b
Diffstat (limited to 'src/os_msdos.c')
-rw-r--r--src/os_msdos.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/os_msdos.c b/src/os_msdos.c
index 84341edf0..dee6d9128 100644
--- a/src/os_msdos.c
+++ b/src/os_msdos.c
@@ -711,9 +711,7 @@ vim_kbhit(void)
static int
WaitForChar(long msec)
{
- union REGS regs;
long starttime = 0;
- int x, y;
if (msec != 0)
starttime = biostime(0, 0L);
@@ -723,6 +721,8 @@ WaitForChar(long msec)
#ifdef FEAT_MOUSE
long clicktime;
static int old_status = 0;
+ union REGS regs;
+ int x, y;
if (mouse_avail && mouse_active && mouse_click < 0)
{