1
0
forked from aniani/vim

updated for version 7.0219

This commit is contained in:
Bram Moolenaar
2006-03-09 22:37:52 +00:00
parent 4ea8fe1d06
commit 1056d98844
18 changed files with 633 additions and 265 deletions

View File

@@ -4430,12 +4430,8 @@ vim_ispathsep(c)
/* server"user passwd"::device:[full.path.name]fname.extension;version" */
return (c == ':' || c == '[' || c == ']' || c == '/'
|| c == '<' || c == '>' || c == '"' );
# else
# ifdef COLON_AS_PATHSEP
return (c == ':');
# else /* Amiga */
# else /* Amiga */
return (c == ':' || c == '/');
# endif
# endif /* VMS */
# endif
# endif