diff options
| author | Paul Eggert | 2012-07-12 08:20:39 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-07-12 08:20:39 -0700 |
| commit | debd9b27a2337d527c24089f67f2cc5a4bb05ef3 (patch) | |
| tree | fe6e74a1be06eb5d4d95f0014c3ce1ae4d15c110 /lib-src | |
| parent | 56bc1586eaf4647bd9878e826779ad0d785820b3 (diff) | |
| download | emacs-debd9b27a2337d527c24089f67f2cc5a4bb05ef3.tar.gz emacs-debd9b27a2337d527c24089f67f2cc5a4bb05ef3.zip | |
* movemail.c: Add missing 'defined'.
Suggested by Sven Joachim in
<http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00218.html>.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 6 | ||||
| -rw-r--r-- | lib-src/movemail.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 28f3403b369..4f4d2b50a00 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2012-07-12 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | * movemail.c: Add missing 'defined'. | ||
| 4 | Suggested by Sven Joachim in | ||
| 5 | <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00218.html>. | ||
| 6 | |||
| 1 | 2012-07-11 Paul Eggert <eggert@cs.ucla.edu> | 7 | 2012-07-11 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 8 | ||
| 3 | Port 'movemail' again to Solaris and similar hosts. | 9 | Port 'movemail' again to Solaris and similar hosts. |
diff --git a/lib-src/movemail.c b/lib-src/movemail.c index fb2111fd621..d157aa8c0b9 100644 --- a/lib-src/movemail.c +++ b/lib-src/movemail.c | |||
| @@ -145,7 +145,7 @@ static int mbx_delimit_begin (FILE *mbf); | |||
| 145 | static int mbx_delimit_end (FILE *mbf); | 145 | static int mbx_delimit_end (FILE *mbf); |
| 146 | #endif | 146 | #endif |
| 147 | 147 | ||
| 148 | #if (MAIL_USE_MAILLOCK \ | 148 | #if (defined MAIL_USE_MAILLOCK \ |
| 149 | || (!defined DISABLE_DIRECT_ACCESS && !defined MAIL_USE_MMDF \ | 149 | || (!defined DISABLE_DIRECT_ACCESS && !defined MAIL_USE_MMDF \ |
| 150 | && !defined MAIL_USE_SYSTEM_LOCK)) | 150 | && !defined MAIL_USE_SYSTEM_LOCK)) |
| 151 | /* Like malloc but get fatal error if memory is exhausted. */ | 151 | /* Like malloc but get fatal error if memory is exhausted. */ |