diff options
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 6 | ||||
| -rw-r--r-- | lib-src/make-docfile.c | 4 | ||||
| -rw-r--r-- | lib-src/movemail.c | 6 |
3 files changed, 6 insertions, 10 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 07d73545468..bb28500d68d 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * movemail.c: | ||
| 4 | * make-docfile.c: Remove reference to symbols defined by systems | ||
| 5 | not supported anymore: MAC_OS8, XENIX and STRIDE. | ||
| 6 | |||
| 1 | 2008-01-12 Eli Zaretskii <eliz@gnu.org> | 7 | 2008-01-12 Eli Zaretskii <eliz@gnu.org> |
| 2 | 8 | ||
| 3 | * emacsclient.c (decode_options) [WINDOWSNT]: Don't use the value | 9 | * emacsclient.c (decode_options) [WINDOWSNT]: Don't use the value |
diff --git a/lib-src/make-docfile.c b/lib-src/make-docfile.c index 1564aca5bbe..6e22eb857e3 100644 --- a/lib-src/make-docfile.c +++ b/lib-src/make-docfile.c | |||
| @@ -62,11 +62,7 @@ Boston, MA 02110-1301, USA. */ | |||
| 62 | #endif /* not DOS_NT */ | 62 | #endif /* not DOS_NT */ |
| 63 | 63 | ||
| 64 | #ifndef DIRECTORY_SEP | 64 | #ifndef DIRECTORY_SEP |
| 65 | #ifdef MAC_OS8 | ||
| 66 | #define DIRECTORY_SEP ':' | ||
| 67 | #else /* not MAC_OS8 */ | ||
| 68 | #define DIRECTORY_SEP '/' | 65 | #define DIRECTORY_SEP '/' |
| 69 | #endif /* not MAC_OS8 */ | ||
| 70 | #endif | 66 | #endif |
| 71 | 67 | ||
| 72 | #ifndef IS_DIRECTORY_SEP | 68 | #ifndef IS_DIRECTORY_SEP |
diff --git a/lib-src/movemail.c b/lib-src/movemail.c index 7c647676ff5..daf8c6166e6 100644 --- a/lib-src/movemail.c +++ b/lib-src/movemail.c | |||
| @@ -503,13 +503,7 @@ main (argc, argv) | |||
| 503 | #ifdef MAIL_USE_SYSTEM_LOCK | 503 | #ifdef MAIL_USE_SYSTEM_LOCK |
| 504 | if (! preserve_mail) | 504 | if (! preserve_mail) |
| 505 | { | 505 | { |
| 506 | #if defined (STRIDE) || defined (XENIX) | ||
| 507 | /* Stride, xenix have file locking, but no ftruncate. | ||
| 508 | This mess will do. */ | ||
| 509 | close (open (inname, O_CREAT | O_TRUNC | O_RDWR, 0666)); | ||
| 510 | #else | ||
| 511 | ftruncate (indesc, 0L); | 506 | ftruncate (indesc, 0L); |
| 512 | #endif /* STRIDE or XENIX */ | ||
| 513 | } | 507 | } |
| 514 | #endif /* MAIL_USE_SYSTEM_LOCK */ | 508 | #endif /* MAIL_USE_SYSTEM_LOCK */ |
| 515 | 509 | ||