diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-07-17 13:03:48 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-07-17 13:03:48 +0200 |
commit | 5d1bc78a2b9fbe3e3112afcde7c80eb19d5989f4 (patch) | |
tree | 5063777a3da9f1820380678fb550a554d55b7081 /src/proto | |
parent | fe6f18687761403470979feef8fe8ce582ae3b60 (diff) | |
download | vim-5d1bc78a2b9fbe3e3112afcde7c80eb19d5989f4.zip |
patch 7.4.782
Problem: Still a few problems with CTRL-A and CTRL-X in Visual mode.
Solution: Fix the reported problems. (Christian Brabandt)
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/charset.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/charset.pro b/src/proto/charset.pro index fc7769ce3..dd3b6f2a0 100644 --- a/src/proto/charset.pro +++ b/src/proto/charset.pro @@ -49,7 +49,7 @@ char_u *skiptowhite __ARGS((char_u *p)); char_u *skiptowhite_esc __ARGS((char_u *p)); long getdigits __ARGS((char_u **pp)); int vim_isblankline __ARGS((char_u *lbuf)); -void vim_str2nr __ARGS((char_u *start, int *hexp, int *len, int dooct, int dohex, long *nptr, unsigned long *unptr)); +void vim_str2nr __ARGS((char_u *start, int *hexp, int *len, int dooct, int dohex, long *nptr, unsigned long *unptr, int strlen)); int hex2nr __ARGS((int c)); int hexhex2nr __ARGS((char_u *p)); int rem_backslash __ARGS((char_u *str)); |