comparison src/lisp.h @ 15090:c07a2c3e141d

[WINDOWS_NT]: Declare Vdirectory_sep_char.
author Richard M. Stallman <rms@gnu.org>
date Fri, 26 Apr 1996 19:53:20 +0000
parents 7a50843d260f
children 597fb46cb2fd
comparison
equal deleted inserted replaced
15089:3305f0390624 15090:c07a2c3e141d
1801 1801
1802 /* Some systems (e.g., NT) use a different path separator than Unix, 1802 /* Some systems (e.g., NT) use a different path separator than Unix,
1803 in addition to a device separator. Default the path separator 1803 in addition to a device separator. Default the path separator
1804 to '/', and don't test for a device separator in IS_ANY_SEP. */ 1804 to '/', and don't test for a device separator in IS_ANY_SEP. */
1805 1805
1806 #ifdef WINDOWSNT
1807 extern Lisp_Object Vdirectory_sep_char;
1808 #endif
1809
1806 #ifndef DIRECTORY_SEP 1810 #ifndef DIRECTORY_SEP
1807 #define DIRECTORY_SEP '/' 1811 #define DIRECTORY_SEP '/'
1808 #endif 1812 #endif
1809 #ifndef IS_DIRECTORY_SEP 1813 #ifndef IS_DIRECTORY_SEP
1810 #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP) 1814 #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)