diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2012-07-12 08:20:39 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2012-07-12 08:20:39 -0700 |
commit | debd9b27a2337d527c24089f67f2cc5a4bb05ef3 (patch) | |
tree | fe6e74a1be06eb5d4d95f0014c3ce1ae4d15c110 /lib-src/movemail.c | |
parent | 56bc1586eaf4647bd9878e826779ad0d785820b3 (diff) | |
download | emacs-debd9b27a2337d527c24089f67f2cc5a4bb05ef3.tar.gz |
* 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/movemail.c')
-rw-r--r-- | lib-src/movemail.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); static int mbx_delimit_end (FILE *mbf); #endif -#if (MAIL_USE_MAILLOCK \ +#if (defined MAIL_USE_MAILLOCK \ || (!defined DISABLE_DIRECT_ACCESS && !defined MAIL_USE_MMDF \ && !defined MAIL_USE_SYSTEM_LOCK)) /* Like malloc but get fatal error if memory is exhausted. */ |