diff options
author | Felipe Morales <hel.sheep@gmail.com> | 2015-07-25 17:33:45 -0300 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-08-01 23:16:16 -0400 |
commit | 746a4e9f847242f0168453a6b85431561f670f32 (patch) | |
tree | c29b51a0ef1dd9c491599828c601c7ea29c9b10c | |
parent | d4396acedb213209aee4693e196f1952bbc88ff5 (diff) | |
download | rneovim-746a4e9f847242f0168453a6b85431561f670f32.tar.gz rneovim-746a4e9f847242f0168453a6b85431561f670f32.tar.bz2 rneovim-746a4e9f847242f0168453a6b85431561f670f32.zip |
Remove spurious warning when reading directories
-rw-r--r-- | src/nvim/fileio.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/nvim/fileio.c b/src/nvim/fileio.c index dee9680230..58e4873e00 100644 --- a/src/nvim/fileio.c +++ b/src/nvim/fileio.c @@ -415,14 +415,11 @@ readfile ( msg_scroll = TRUE; /* don't overwrite previous file message */ /* - * If the name ends in a path separator, we can't open it. Check here, - * because reading the file may actually work, but then creating the swap - * file may destroy it! Reported on MS-DOS and Win 95. * If the name is too long we might crash further on, quit here. */ if (fname != NULL && *fname != NUL) { p = fname + STRLEN(fname); - if (after_pathsep((char *)fname, (char *)p) || STRLEN(fname) >= MAXPATHL) { + if (STRLEN(fname) >= MAXPATHL) { filemess(curbuf, fname, (char_u *)_("Illegal file name"), 0); msg_end(); msg_scroll = msg_save; |