From 2efbc66e260a9988b5d66c68de940bff6fcdb954 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 14 May 2010 18:56:38 +0200 Subject: 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) --- src/fileio.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/fileio.c') 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 @@ -663,6 +667,9 @@ readfile(fname, sfname, from, lines_to_skip, lines_to_read, eap, flags) filemess(curbuf, sfname, (char_u *)( # 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 */ -- cgit v1.2.1