diff options
| author | Richard M. Stallman | 1996-04-28 23:37:04 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-04-28 23:37:04 +0000 |
| commit | 61946d674c3fcf98479d167d04dda84991a82128 (patch) | |
| tree | 9a84c14406a488e2ad686229de70cce2544467f2 /lib-src | |
| parent | b98cf43f0183f6a01379e882d0717e5d5d9db506 (diff) | |
| download | emacs-61946d674c3fcf98479d167d04dda84991a82128.tar.gz emacs-61946d674c3fcf98479d167d04dda84991a82128.zip | |
(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. */ | |||
| 70 | #undef access | 70 | #undef access |
| 71 | #endif /* MSDOS */ | 71 | #endif /* MSDOS */ |
| 72 | 72 | ||
| 73 | #ifndef DIRECTORY_SEP | ||
| 74 | #define DIRECTORY_SEP '/' | ||
| 75 | #endif | ||
| 76 | #ifndef IS_DIRECTORY_SEP | ||
| 77 | #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP) | ||
| 78 | #endif | ||
| 79 | |||
| 73 | #ifdef WINDOWSNT | 80 | #ifdef WINDOWSNT |
| 74 | #undef access | 81 | #undef access |
| 75 | #undef unlink | 82 | #undef unlink |