comparison src/lisp.h @ 9811:c6270c781781

Leave DEVICE_SEP undefined by default.
author Karl Heuer <kwzh@gnu.org>
date Wed, 02 Nov 1994 02:35:56 +0000
parents c9c11e41bf07
children e84476854b43
comparison
equal deleted inserted replaced
9810:c76b3e670eb3 9811:c6270c781781
1499 to '/', and don't test for a device separator in IS_ANY_SEP. */ 1499 to '/', and don't test for a device separator in IS_ANY_SEP. */
1500 1500
1501 #ifndef DIRECTORY_SEP 1501 #ifndef DIRECTORY_SEP
1502 #define DIRECTORY_SEP '/' 1502 #define DIRECTORY_SEP '/'
1503 #endif 1503 #endif
1504 #ifndef DEVICE_SEP
1505 #define DEVICE_SEP ':'
1506 #endif
1507 #ifndef IS_DIRECTORY_SEP 1504 #ifndef IS_DIRECTORY_SEP
1508 #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP) 1505 #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
1509 #endif 1506 #endif
1510 #ifndef IS_DEVICE_SEP 1507 #ifndef IS_DEVICE_SEP
1511 #ifndef DEVICE_SEP 1508 #ifndef DEVICE_SEP