From 55c131eef9a9e55fc9dbbac374118b18a5eb5b0e Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Sun, 8 Apr 2012 23:14:30 +0200 Subject: [PATCH] * lisp.h (struct Lisp_Symbol): Add explicit padding to ensure proper alignment. --- src/ChangeLog | 5 +++++ src/lisp.h | 2 ++ 2 files changed, 7 insertions(+) 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. */ -- 2.39.2