From 28da6accb037b32dddf172a35d522587465d3da3 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Fri, 7 Sep 2018 09:50:19 -0700 Subject: [PATCH] One more GC-aligned struct * src/lisp.h (struct Lisp_Sub_Char_Table): Mark this with GCALIGNED_STRUCT, too. --- src/lisp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lisp.h b/src/lisp.h index 56623a75f74..f2a3ac92132 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -1890,7 +1890,7 @@ struct Lisp_Sub_Char_Table /* Use set_sub_char_table_contents to set this. */ Lisp_Object contents[FLEXIBLE_ARRAY_MEMBER]; - }; + } GCALIGNED_STRUCT; INLINE bool SUB_CHAR_TABLE_P (Lisp_Object a) -- 2.39.5