From: Paul Eggert Date: Fri, 7 Sep 2018 16:50:19 +0000 (-0700) Subject: One more GC-aligned struct X-Git-Tag: emacs-27.0.90~4452 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=28da6accb037b32dddf172a35d522587465d3da3;p=emacs.git One more GC-aligned struct * src/lisp.h (struct Lisp_Sub_Char_Table): Mark this with GCALIGNED_STRUCT, too. --- 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)