diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-06-04 13:32:35 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-06-04 13:32:35 +0200 |
commit | cda7764d8e65325d4524e5d6c3174121eeb12cad (patch) | |
tree | 5f4802c0e68f2a1bcfa57e6e56720b88230d327b /src/proto/getchar.pro | |
parent | 1aa07bdead2e93501c54591e31fe73b9b09c58b5 (diff) | |
download | vim-cda7764d8e65325d4524e5d6c3174121eeb12cad.zip |
patch 7.4.1886
Problem: When waiting for a character is interrupted by receiving channel
data and the first character of a mapping was typed, the mapping
times out. (Ramel Eshed)
Solution: When dealing with channel data don't return from mch_inchar().
Diffstat (limited to 'src/proto/getchar.pro')
-rw-r--r-- | src/proto/getchar.pro | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/proto/getchar.pro b/src/proto/getchar.pro index 97a282856..dc117b0ac 100644 --- a/src/proto/getchar.pro +++ b/src/proto/getchar.pro @@ -47,7 +47,6 @@ int vpeekc_nomap(void); int vpeekc_any(void); int char_avail(void); void vungetc(int c); -int inchar(char_u *buf, int maxlen, long wait_time, int tb_change_cnt); int fix_input_buffer(char_u *buf, int len, int script); int input_available(void); int do_map(int maptype, char_u *arg, int mode, int abbrev); |