emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs-25 d2c7fda 2/2: * src/alloc.c (mark_maybe_pointer):


From: Stefan Monnier
Subject: [Emacs-diffs] emacs-25 d2c7fda 2/2: * src/alloc.c (mark_maybe_pointer): HAVE_MODULES may be undefined
Date: Sun, 10 Jan 2016 05:32:18 +0000

branch: emacs-25
commit d2c7fda9654a79423be8320bc2028263aefccced
Author: Stefan Monnier <address@hidden>
Commit: Stefan Monnier <address@hidden>

    * src/alloc.c (mark_maybe_pointer): HAVE_MODULES may be undefined
---
 src/alloc.c |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/src/alloc.c b/src/alloc.c
index e1b0d2e..9d876a5 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -4607,7 +4607,13 @@ mark_maybe_pointer (void *p)
     VALGRIND_MAKE_MEM_DEFINED (&p, sizeof (p));
 #endif
 
-  if (sizeof (Lisp_Object) == sizeof (void *) || !HAVE_MODULES)
+  if (
+#ifdef HAVE_MODULES
+      sizeof (Lisp_Object) == sizeof (void *)
+#else
+      true
+#endif
+     )
     {
       if (!maybe_lisp_pointer (p))
         return;



reply via email to

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