diff options
| author | John Wiegley | 2016-01-30 21:34:32 -0800 |
|---|---|---|
| committer | John Wiegley | 2016-01-30 21:34:32 -0800 |
| commit | 98bdbdbebb42a29b6be391bc9b3a68456ffeadd2 (patch) | |
| tree | 1d50669ab379592ffee32481088844f095d5b04c | |
| parent | b250d2996abccadb5765dd6974a1210b25ca83a0 (diff) | |
| download | emacs-98bdbdbebb42a29b6be391bc9b3a68456ffeadd2.tar.gz emacs-98bdbdbebb42a29b6be391bc9b3a68456ffeadd2.zip | |
Correct reference to DARWIN_OS preprocessor symbol
* src/alloc.c: Correct a preprocessor reference to DARWIN_OS, which may
not be defined.
| -rw-r--r-- | src/alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c index 5f74d9061e5..6c6c1aade8e 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -1108,7 +1108,7 @@ lisp_free (void *block) | |||
| 1108 | clang 3.3 anyway. Aligned allocation is incompatible with | 1108 | clang 3.3 anyway. Aligned allocation is incompatible with |
| 1109 | unexmacosx.c, so don't use it on Darwin. */ | 1109 | unexmacosx.c, so don't use it on Darwin. */ |
| 1110 | 1110 | ||
| 1111 | #if ! ADDRESS_SANITIZER && ! DARWIN_OS | 1111 | #if ! ADDRESS_SANITIZER && !defined DARWIN_OS |
| 1112 | # if !defined SYSTEM_MALLOC && !defined DOUG_LEA_MALLOC && !defined HYBRID_MALLOC | 1112 | # if !defined SYSTEM_MALLOC && !defined DOUG_LEA_MALLOC && !defined HYBRID_MALLOC |
| 1113 | # define USE_ALIGNED_ALLOC 1 | 1113 | # define USE_ALIGNED_ALLOC 1 |
| 1114 | # ifndef HAVE_ALIGNED_ALLOC | 1114 | # ifndef HAVE_ALIGNED_ALLOC |