diff options
Diffstat (limited to 'src/lisp.h')
| -rw-r--r-- | src/lisp.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/lisp.h b/src/lisp.h index e17931ca366..7c6c85e6356 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -3509,16 +3509,10 @@ extern char *egetenv P_ ((char *)); | |||
| 3509 | extern void init_system_name P_ ((void)); | 3509 | extern void init_system_name P_ ((void)); |
| 3510 | 3510 | ||
| 3511 | /* Some systems (e.g., NT) use a different path separator than Unix, | 3511 | /* Some systems (e.g., NT) use a different path separator than Unix, |
| 3512 | in addition to a device separator. Default the path separator | 3512 | in addition to a device separator. Set the path separator |
| 3513 | to '/', and don't test for a device separator in IS_ANY_SEP. */ | 3513 | to '/', and don't test for a device separator in IS_ANY_SEP. */ |
| 3514 | 3514 | ||
| 3515 | #ifdef WINDOWSNT | ||
| 3516 | extern Lisp_Object Vdirectory_sep_char; | ||
| 3517 | #endif | ||
| 3518 | |||
| 3519 | #ifndef DIRECTORY_SEP | ||
| 3520 | #define DIRECTORY_SEP '/' | 3515 | #define DIRECTORY_SEP '/' |
| 3521 | #endif | ||
| 3522 | #ifndef IS_DIRECTORY_SEP | 3516 | #ifndef IS_DIRECTORY_SEP |
| 3523 | #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP) | 3517 | #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP) |
| 3524 | #endif | 3518 | #endif |