summaryrefslogtreecommitdiffstats
path: root/src/proto
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2011-05-19 18:26:40 +0200
committerBram Moolenaar <Bram@vim.org>2011-05-19 18:26:40 +0200
commit9b486ca3915bf457ddbd6f55f28a1f143b8f63c3 (patch)
tree3ef7e512bcfa93a2e049f2e9139894a57b145293 /src/proto
parentefa8e80c0bbd2a1c732f9cfccf296dacf96bddbe (diff)
updated for version 7.3.198v7.3.198
Problem: No completion for ":lang". Solution: Get locales to complete from. (Dominique Pelle)
Diffstat (limited to 'src/proto')
-rw-r--r--src/proto/ex_cmds2.pro2
-rw-r--r--src/proto/ex_getln.pro2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/proto/ex_cmds2.pro b/src/proto/ex_cmds2.pro
index 2c89fe3fe5..dc3bb790bb 100644
--- a/src/proto/ex_cmds2.pro
+++ b/src/proto/ex_cmds2.pro
@@ -83,5 +83,7 @@ void ex_checktime __ARGS((exarg_T *eap));
char_u *get_mess_lang __ARGS((void));
void set_lang_var __ARGS((void));
void ex_language __ARGS((exarg_T *eap));
+void free_locales __ARGS((void));
char_u *get_lang_arg __ARGS((expand_T *xp, int idx));
+char_u *get_locales __ARGS((expand_T *xp, int idx));
/* vim: set ft=c : */
diff --git a/src/proto/ex_getln.pro b/src/proto/ex_getln.pro
index cdc49a838f..26eb00d291 100644
--- a/src/proto/ex_getln.pro
+++ b/src/proto/ex_getln.pro
@@ -31,7 +31,7 @@ char_u *sm_gettail __ARGS((char_u *s));
char_u *addstar __ARGS((char_u *fname, int len, int context));
void set_cmd_context __ARGS((expand_T *xp, char_u *str, int len, int col));
int expand_cmdline __ARGS((expand_T *xp, char_u *str, int col, int *matchcount, char_u ***matches));
-int ExpandGeneric __ARGS((expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file, char_u *((*func)(expand_T *, int))));
+int ExpandGeneric __ARGS((expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file, char_u *((*func)(expand_T *, int)), int escaped));
char_u *globpath __ARGS((char_u *path, char_u *file, int expand_options));
void init_history __ARGS((void));
int get_histtype __ARGS((char_u *name));