mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-27 10:54:40 +00:00
* src/alloc.c (mark_maybe_pointer): HAVE_MODULES may be undefined
This commit is contained in:
parent
bd3f53dd2e
commit
d2c7fda965
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user