# HG changeset patch # User Richard M. Stallman # Date 830734624 0 # Node ID 328889a58f6d34b50d2a9430562b1e9a650d4ae6 # Parent f41d9619ffc427ee3476309cf15e0cfcc9582b33 (DIRECTORY_SEP, IS_DIRECTORY_SEP): Definitions copied from lisp.h. diff -r f41d9619ffc4 -r 328889a58f6d lib-src/movemail.c --- a/lib-src/movemail.c Sun Apr 28 19:09:03 1996 +0000 +++ b/lib-src/movemail.c Sun Apr 28 23:37:04 1996 +0000 @@ -70,6 +70,13 @@ #undef access #endif /* MSDOS */ +#ifndef DIRECTORY_SEP +#define DIRECTORY_SEP '/' +#endif +#ifndef IS_DIRECTORY_SEP +#define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP) +#endif + #ifdef WINDOWSNT #undef access #undef unlink