aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 5e45882b892..70630de53cb 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -56,7 +56,7 @@ struct buffer *all_buffers;
56 Setting the default value also goes through the alist of buffers 56 Setting the default value also goes through the alist of buffers
57 and stores into each buffer that does not say it has a local value. */ 57 and stores into each buffer that does not say it has a local value. */
58 58
59DECL_ALIGN (struct buffer, buffer_defaults); 59struct buffer alignas (GCALIGNMENT) buffer_defaults;
60 60
61/* A Lisp_Object pointer to the above, used for staticpro */ 61/* A Lisp_Object pointer to the above, used for staticpro */
62 62
@@ -83,7 +83,7 @@ struct buffer buffer_local_flags;
83/* This structure holds the names of symbols whose values may be 83/* This structure holds the names of symbols whose values may be
84 buffer-local. It is indexed and accessed in the same way as the above. */ 84 buffer-local. It is indexed and accessed in the same way as the above. */
85 85
86DECL_ALIGN (struct buffer, buffer_local_symbols); 86struct buffer alignas (GCALIGNMENT) buffer_local_symbols;
87 87
88/* A Lisp_Object pointer to the above, used for staticpro */ 88/* A Lisp_Object pointer to the above, used for staticpro */
89static Lisp_Object Vbuffer_local_symbols; 89static Lisp_Object Vbuffer_local_symbols;