diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-05-14 18:56:38 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-05-14 18:56:38 +0200 |
commit | 2efbc66e260a9988b5d66c68de940bff6fcdb954 (patch) | |
tree | 8fc48dc072e5ec53e76a6619568214928b5df8b1 | |
parent | f9ddb94283148020cab6ce74cbbdda59ab53e4ac (diff) | |
download | vim-2efbc66e260a9988b5d66c68de940bff6fcdb954.zip |
updated for version 7.2.429
Problem: A file that exists but access is denied may result in a "new file"
message. E.g. when its directory is unreadable.
Solution: Specifically check for ENOENT to decide a file doesn't exist.
(partly by James Vega)
-rw-r--r-- | src/fileio.c | 9 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c index 88188e597..c36796972 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -595,7 +595,11 @@ readfile(fname, sfname, from, lines_to_skip, lines_to_read, eap, flags) #endif if (newfile) { - if (perm < 0) + if (perm < 0 +#ifdef ENOENT + && errno == ENOENT +#endif + ) { /* * Set the 'new-file' flag, so that when the file has @@ -664,6 +668,9 @@ readfile(fname, sfname, from, lines_to_skip, lines_to_read, eap, flags) # ifdef EFBIG (errno == EFBIG) ? _("[File too big]") : # endif +# ifdef EOVERFLOW + (errno == EOVERFLOW) ? _("[File too big]") : +# endif _("[Permission Denied]")), 0); curbuf->b_p_ro = TRUE; /* must use "w!" now */ } diff --git a/src/version.c b/src/version.c index 499bc4720..dc706e7d9 100644 --- a/src/version.c +++ b/src/version.c @@ -682,6 +682,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 429, +/**/ 428, /**/ 427, |