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

@@ -177,23 +177,17 @@ extern char MetaCharTable[];
* Character that separates dir names in a path.
* For MS-DOS, WIN32 and OS/2 we use a backslash. A slash mostly works
* fine, but there are places where it doesn't (e.g. in a command name).
* For Macintosh we use a colon.
* For Acorn we use a dot.
*/
#ifdef BACKSLASH_IN_FILENAME
# define PATHSEP psepc
# define PATHSEPSTR pseps
#else
# ifdef COLON_AS_PATHSEP
# define PATHSEP ':'
# define PATHSEPSTR ":"
# ifdef RISCOS
# define PATHSEP '.'
# define PATHSEPSTR "."
# else
# ifdef RISCOS
# define PATHSEP '.'
# define PATHSEPSTR "."
# else
# define PATHSEP '/'
# define PATHSEPSTR "/"
# endif
# define PATHSEP '/'
# define PATHSEPSTR "/"
# endif
#endif