diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-05-19 19:59:35 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-05-19 19:59:35 +0200 |
commit | 16e9b85113e0b354ece1cb4f5fcc7866850f3685 (patch) | |
tree | 2abe4e3cffe8b0281f0690e5570a47eb2198a826 /src/proto/charset.pro | |
parent | f5842c5a533346c4ff41ff666e465c85f1de35d5 (diff) | |
download | vim-git-16e9b85113e0b354ece1cb4f5fcc7866850f3685.tar.gz |
patch 8.1.1355: obvious mistakes are accepted as valid expressionsv8.1.1355
Problem: Obvious mistakes are accepted as valid expressions.
Solution: Be more strict about parsing numbers. (Yasuhiro Matsumoto,
closes #3981)
Diffstat (limited to 'src/proto/charset.pro')
-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 bb4132fe7..f60822ef0 100644 --- a/src/proto/charset.pro +++ b/src/proto/charset.pro @@ -54,7 +54,7 @@ char_u *skiptowhite(char_u *p); char_u *skiptowhite_esc(char_u *p); long getdigits(char_u **pp); int vim_isblankline(char_u *lbuf); -void vim_str2nr(char_u *start, int *prep, int *len, int what, varnumber_T *nptr, uvarnumber_T *unptr, int maxlen); +void vim_str2nr(char_u *start, int *prep, int *len, int what, varnumber_T *nptr, uvarnumber_T *unptr, int maxlen, int strict); int hex2nr(int c); int hexhex2nr(char_u *p); int rem_backslash(char_u *str); |