diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-04-28 23:37:04 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-04-28 23:37:04 +0000 |
commit | 61946d674c3fcf98479d167d04dda84991a82128 (patch) | |
tree | 9a84c14406a488e2ad686229de70cce2544467f2 /lib-src | |
parent | b98cf43f0183f6a01379e882d0717e5d5d9db506 (diff) | |
download | emacs-61946d674c3fcf98479d167d04dda84991a82128.tar.gz |
(DIRECTORY_SEP, IS_DIRECTORY_SEP): Definitions copied from lisp.h.
Diffstat (limited to 'lib-src')
-rw-r--r-- | lib-src/movemail.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib-src/movemail.c b/lib-src/movemail.c index 295b006911b..3739e01371d 100644 --- a/lib-src/movemail.c +++ b/lib-src/movemail.c @@ -70,6 +70,13 @@ Boston, MA 02111-1307, USA. */ #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 |