comparison src/lisp.h @ 209:41ff10fd062f r20-4b3

Import from CVS: tag r20-4b3
author cvs
date Mon, 13 Aug 2007 10:04:58 +0200
parents e45d5e7c476e
children 78478c60bfcd
comparison
equal deleted inserted replaced
208:f427b8ec4379 209:41ff10fd062f
1946 1946
1947 /* Some systems (e.g., NT) use a different path separator than Unix, 1947 /* Some systems (e.g., NT) use a different path separator than Unix,
1948 in addition to a device separator. Default the path separator 1948 in addition to a device separator. Default the path separator
1949 to '/', and don't test for a device separator in IS_ANY_SEP. */ 1949 to '/', and don't test for a device separator in IS_ANY_SEP. */
1950 1950
1951 #ifdef WINDOWSNT
1952 extern Lisp_Object Vdirectory_sep_char;
1953 #endif
1954
1951 #ifndef DIRECTORY_SEP 1955 #ifndef DIRECTORY_SEP
1952 #define DIRECTORY_SEP '/' 1956 #define DIRECTORY_SEP '/'
1953 #endif 1957 #endif
1954 #ifndef IS_DIRECTORY_SEP 1958 #ifndef IS_DIRECTORY_SEP
1955 #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP) 1959 #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)