Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 647238 | Differences between
and this patch

Collapse All | Expand All

(-)file_not_specified_in_diff (-2 / +3 lines)
Line  Link Here
0
-- emacs-25.3-orig/src/alloc.c
0
++ emacs-25.3/src/alloc.c
Lines 4892-4898 Link Here
4892
  for (pp = start; (void *) pp < end; pp += GC_POINTER_ALIGNMENT)
4892
  for (pp = start; (void *) pp < end; pp += GC_POINTER_ALIGNMENT)
4893
    {
4893
    {
4894
      mark_maybe_pointer (*(void **) pp);
4894
      mark_maybe_pointer (*(void **) pp);
4895
      mark_maybe_object (*(Lisp_Object *) pp);
4895
      if ((intptr_t) pp % alignof (Lisp_Object) == 0)
4896
	mark_maybe_object (*(Lisp_Object *) pp);
4896
    }
4897
    }
4897
}
4898
}
4898
4899

Return to bug 647238