diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-03-09 22:37:52 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-03-09 22:37:52 +0000 |
commit | 1056d988442648527a45366c9d16523cdc521031 (patch) | |
tree | afd2b3182b3c81edf3f95a34c10b3a3ea2e5c833 /src/ascii.h | |
parent | 4ea8fe1d0600a7020c9f3a652f1d429a96965311 (diff) | |
download | vim-git-1056d988442648527a45366c9d16523cdc521031.tar.gz |
updated for version 7.0219v7.0219
Diffstat (limited to 'src/ascii.h')
-rw-r--r-- | src/ascii.h | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/src/ascii.h b/src/ascii.h index 4ab3518c4..b920d41af 100644 --- a/src/ascii.h +++ b/src/ascii.h @@ -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 |