comparison src/fileio.c @ 432:3a7e78e1142d r21-2-24

Import from CVS: tag r21-2-24
author cvs
date Mon, 13 Aug 2007 11:29:58 +0200
parents 3ecd8885ac67
children 8de8e3f6228a
comparison
equal deleted inserted replaced
431:a97165e56215 432:3a7e78e1142d
4331 The value should be either ?/ or ?\\ (any other value is treated as ?\\). 4331 The value should be either ?/ or ?\\ (any other value is treated as ?\\).
4332 This variable affects the built-in functions only on Windows, 4332 This variable affects the built-in functions only on Windows,
4333 on other platforms, it is initialized so that Lisp code can find out 4333 on other platforms, it is initialized so that Lisp code can find out
4334 what the normal separator is. 4334 what the normal separator is.
4335 */ ); 4335 */ );
4336 Vdirectory_sep_char = make_char ('/'); 4336 #ifdef WINDOWSNT
4337 } 4337 Vdirectory_sep_char = make_char ('\\');
4338 #else
4339 Vdirectory_sep_char = make_char ('/');
4340 #endif
4341 }