diff options
Diffstat (limited to 'src/lisp.h')
| -rw-r--r-- | src/lisp.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/lisp.h b/src/lisp.h index 147a4781937..55f8677f9a5 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -3305,24 +3305,7 @@ extern char *egetenv (const char *); | |||
| 3305 | /* Set up the name of the machine we're running on. */ | 3305 | /* Set up the name of the machine we're running on. */ |
| 3306 | extern void init_system_name (void); | 3306 | extern void init_system_name (void); |
| 3307 | 3307 | ||
| 3308 | /* Some systems (e.g., NT) use a different path separator than Unix, | ||
| 3309 | in addition to a device separator. Set the path separator | ||
| 3310 | to '/', and don't test for a device separator in IS_ANY_SEP. */ | ||
| 3311 | |||
| 3312 | static char const DIRECTORY_SEP = '/'; | 3308 | static char const DIRECTORY_SEP = '/'; |
| 3313 | #ifndef IS_DIRECTORY_SEP | ||
| 3314 | #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP) | ||
| 3315 | #endif | ||
| 3316 | #ifndef IS_DEVICE_SEP | ||
| 3317 | #ifndef DEVICE_SEP | ||
| 3318 | #define IS_DEVICE_SEP(_c_) 0 | ||
| 3319 | #else | ||
| 3320 | #define IS_DEVICE_SEP(_c_) ((_c_) == DEVICE_SEP) | ||
| 3321 | #endif | ||
| 3322 | #endif | ||
| 3323 | #ifndef IS_ANY_SEP | ||
| 3324 | #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_)) | ||
| 3325 | #endif | ||
| 3326 | 3309 | ||
| 3327 | /* Use this to suppress gcc's warnings. */ | 3310 | /* Use this to suppress gcc's warnings. */ |
| 3328 | #ifdef lint | 3311 | #ifdef lint |