summaryrefslogtreecommitdiffstats
path: root/src/proto/getchar.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-08-16 22:50:55 +0200
committerBram Moolenaar <Bram@vim.org>2016-08-16 22:50:55 +0200
commit6bff02eb530aa29aafa2cb5627399837be7a5dd5 (patch)
treebbdc08501666f8c44b1bc16b8f4724360555b398 /src/proto/getchar.pro
parent91984b9034d3b698459622be277d963e0c6df60e (diff)
patch 7.4.2222v7.4.2222
Problem: Sourcing a script where a character has 0x80 as a second byte does not work. (Filipe L B Correia) Solution: Turn 0x80 into K_SPECIAL KS_SPECIAL KE_FILLER. (Christian Brabandt, closes #728) Add a test case.
Diffstat (limited to 'src/proto/getchar.pro')
-rw-r--r--src/proto/getchar.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/getchar.pro b/src/proto/getchar.pro
index dc117b0aca..de33bfd147 100644
--- a/src/proto/getchar.pro
+++ b/src/proto/getchar.pro
@@ -47,7 +47,7 @@ int vpeekc_nomap(void);
int vpeekc_any(void);
int char_avail(void);
void vungetc(int c);
-int fix_input_buffer(char_u *buf, int len, int script);
+int fix_input_buffer(char_u *buf, int len);
int input_available(void);
int do_map(int maptype, char_u *arg, int mode, int abbrev);
int get_map_mode(char_u **cmdp, int forceit);