aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2018-09-07 09:50:19 -0700
committerPaul Eggert2018-09-07 09:50:31 -0700
commit28da6accb037b32dddf172a35d522587465d3da3 (patch)
tree9d359d6f7167ed9303b477342b3bf520181226de
parentcab3ca9d3d9449867e9fe1f954fec386a3bb7d46 (diff)
downloademacs-28da6accb037b32dddf172a35d522587465d3da3.tar.gz
emacs-28da6accb037b32dddf172a35d522587465d3da3.zip
One more GC-aligned struct
* src/lisp.h (struct Lisp_Sub_Char_Table): Mark this with GCALIGNED_STRUCT, too.
-rw-r--r--src/lisp.h2
1 files changed, 1 insertions, 1 deletions
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
1890 1890
1891 /* Use set_sub_char_table_contents to set this. */ 1891 /* Use set_sub_char_table_contents to set this. */
1892 Lisp_Object contents[FLEXIBLE_ARRAY_MEMBER]; 1892 Lisp_Object contents[FLEXIBLE_ARRAY_MEMBER];
1893 }; 1893 } GCALIGNED_STRUCT;
1894 1894
1895INLINE bool 1895INLINE bool
1896SUB_CHAR_TABLE_P (Lisp_Object a) 1896SUB_CHAR_TABLE_P (Lisp_Object a)