comparison src/fileio.c @ 359:8e84bee8ddd0 r21-1-9

Import from CVS: tag r21-1-9
author cvs
date Mon, 13 Aug 2007 10:57:55 +0200
parents 4711e16a8e49
children 7347b34c275b
comparison
equal deleted inserted replaced
358:fed6e0f6a03a 359:8e84bee8ddd0
4328 The value should be either ?/ or ?\\ (any other value is treated as ?\\). 4328 The value should be either ?/ or ?\\ (any other value is treated as ?\\).
4329 This variable affects the built-in functions only on Windows, 4329 This variable affects the built-in functions only on Windows,
4330 on other platforms, it is initialized so that Lisp code can find out 4330 on other platforms, it is initialized so that Lisp code can find out
4331 what the normal separator is. 4331 what the normal separator is.
4332 */ ); 4332 */ );
4333 #ifdef WINDOWSNT
4334 Vdirectory_sep_char = make_char ('\\');
4335 #else
4333 Vdirectory_sep_char = make_char ('/'); 4336 Vdirectory_sep_char = make_char ('/');
4334 } 4337 #endif
4338 }