emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-25 98bdbdb: Correct reference to DARWIN_OS preproces


From: John Wiegley
Subject: [Emacs-diffs] emacs-25 98bdbdb: Correct reference to DARWIN_OS preprocessor symbol
Date: Sun, 31 Jan 2016 05:35:13 +0000

branch: emacs-25
commit 98bdbdbebb42a29b6be391bc9b3a68456ffeadd2
Author: John Wiegley <address@hidden>
Commit: John Wiegley <address@hidden>

    Correct reference to DARWIN_OS preprocessor symbol
    
    * src/alloc.c: Correct a preprocessor reference to DARWIN_OS, which may
      not be defined.
---
 src/alloc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/alloc.c b/src/alloc.c
index 5f74d90..6c6c1aa 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -1108,7 +1108,7 @@ lisp_free (void *block)
    clang 3.3 anyway.  Aligned allocation is incompatible with
    unexmacosx.c, so don't use it on Darwin.  */
 
-#if ! ADDRESS_SANITIZER && ! DARWIN_OS
+#if ! ADDRESS_SANITIZER && !defined DARWIN_OS
 # if !defined SYSTEM_MALLOC && !defined DOUG_LEA_MALLOC && !defined 
HYBRID_MALLOC
 #  define USE_ALIGNED_ALLOC 1
 #  ifndef HAVE_ALIGNED_ALLOC



reply via email to

[Prev in Thread] Current Thread [Next in Thread]