diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-01-17 17:02:05 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-01-17 17:02:05 +0100 |
commit | 8c7694a8649cbd5ce91c150737b1f52b20631cb4 (patch) | |
tree | 6a476ff564c1af698be7b437c756761b2e47838e /src/proto | |
parent | 3e37fd0950081e277fac44a0bd8e60815898945c (diff) | |
download | vim-8c7694a8649cbd5ce91c150737b1f52b20631cb4.zip |
updated for version 7.3.769
Problem: 'matchpairs' does not work with multi-byte characters.
Solution: Make it work. (Christian Brabandt)
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/option.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/option.pro b/src/proto/option.pro index 63570fa4c..ba0a4e169 100644 --- a/src/proto/option.pro +++ b/src/proto/option.pro @@ -59,4 +59,5 @@ int file_ff_differs __ARGS((buf_T *buf, int ignore_empty)); int check_ff_value __ARGS((char_u *p)); long get_sw_value __ARGS((void)); long get_sts_value __ARGS((void)); +void find_mps_values __ARGS((int *initc, int *findc, int *backwards, int switchit)); /* vim: set ft=c : */ |