diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-08-14 23:40:45 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-08-14 23:40:45 +0200 |
commit | a9f8ee05f46f2d6621a3719cd15150155d33eed4 (patch) | |
tree | ced769a1f4240f0d5ecebcd76441cdaa22b802d9 /src/version.c | |
parent | 60104f183cc639d2a5295ba157d4ec66ac19fa53 (diff) | |
download | vim-git-a9f8ee05f46f2d6621a3719cd15150155d33eed4.tar.gz |
patch 8.0.0946: using PATH_MAX does not work well on some systemsv8.0.0946
Problem: Using PATH_MAX does not work well on some systems.
Solution: use MAXPATHL instead. (James McCoy, closes #1973)
Diffstat (limited to 'src/version.c')
-rw-r--r-- | src/version.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/version.c b/src/version.c index d616e2567..f3e5a3ad3 100644 --- a/src/version.c +++ b/src/version.c @@ -770,6 +770,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 946, +/**/ 945, /**/ 944, |