diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-05-19 18:26:40 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-05-19 18:26:40 +0200 |
commit | 9b486ca3915bf457ddbd6f55f28a1f143b8f63c3 (patch) | |
tree | 3ef7e512bcfa93a2e049f2e9139894a57b145293 /src/proto/ex_getln.pro | |
parent | efa8e80c0bbd2a1c732f9cfccf296dacf96bddbe (diff) | |
download | vim-git-9b486ca3915bf457ddbd6f55f28a1f143b8f63c3.tar.gz |
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/ex_getln.pro')
-rw-r--r-- | src/proto/ex_getln.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/ex_getln.pro b/src/proto/ex_getln.pro index cdc49a838..26eb00d29 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)); |