From: Andreas Schwab Date: Sun, 8 Apr 2012 21:14:30 +0000 (+0200) Subject: * lisp.h (struct Lisp_Symbol): Add explicit padding to ensure X-Git-Tag: emacs-24.2.90~471^2~377 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=55c131eef9a9e55fc9dbbac374118b18a5eb5b0e;p=emacs.git * lisp.h (struct Lisp_Symbol): Add explicit padding to ensure proper alignment. --- diff --git a/src/ChangeLog b/src/ChangeLog index 9b64659c55f..a4627cb847c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2012-04-08 Andreas Schwab + + * lisp.h (struct Lisp_Symbol): Add explicit padding to ensure + proper alignment. + 2012-04-07 Juanma Barranquero * xml.c (init_libxml2_functions) [WINDOWSNT]: diff --git a/src/lisp.h b/src/lisp.h index 62695f15644..6041cad0d3f 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -1134,6 +1134,8 @@ struct Lisp_Symbol special (with `defvar' etc), and shouldn't be lexically bound. */ unsigned declared_special : 1; + unsigned spacer : 23; + /* The symbol's name, as a Lisp string. The name "xname" is used to intentionally break code referring to the old field "name" of type pointer to struct Lisp_String. */