diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-11-27 20:26:10 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-11-27 20:26:10 -0300 |
commit | 6f7fe5d1b9b182ad3e2bbefe233d3756a8535ee3 (patch) | |
tree | c5e71dc826256ec160ca44eb475eba2cf98728c0 /src/nvim/getchar.c | |
parent | 98b11f5db3a99ef633ad77ddc6b22dc428873e95 (diff) | |
download | rneovim-6f7fe5d1b9b182ad3e2bbefe233d3756a8535ee3.tar.gz rneovim-6f7fe5d1b9b182ad3e2bbefe233d3756a8535ee3.tar.bz2 rneovim-6f7fe5d1b9b182ad3e2bbefe233d3756a8535ee3.zip |
Remove code defined under USE_IM_CONTROL #ifdefs
This is not being used and should not be part of the core anyway.
Diffstat (limited to 'src/nvim/getchar.c')
-rw-r--r-- | src/nvim/getchar.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/nvim/getchar.c b/src/nvim/getchar.c index 6c70773fcf..d0bdcde9e8 100644 --- a/src/nvim/getchar.c +++ b/src/nvim/getchar.c @@ -2349,11 +2349,6 @@ static int vgetorpeek(int advance) + typebuf.tb_len] != NUL) typebuf.tb_noremap[typebuf.tb_off + typebuf.tb_len++] = RM_YES; -#ifdef USE_IM_CONTROL - /* Get IM status right after getting keys, not after the - * timeout for a mapping (focus may be lost by then). */ - vgetc_im_active = im_get_status(); -#endif } } /* for (;;) */ } /* if (!character from stuffbuf) */ |