diff options
Diffstat (limited to 'src/lisp.h')
-rw-r--r-- | src/lisp.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lisp.h b/src/lisp.h index 688c89c1eee..ee83e227db0 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -31,6 +31,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ #include <limits.h> #include <intprops.h> +#include <verify.h> INLINE_HEADER_BEGIN @@ -1145,9 +1146,9 @@ struct Lisp_Vector /* ...but sometimes there is also a pointer internally used in vector allocation code. Usually you don't want to touch this. */ struct Lisp_Vector *next; - + /* We can't use FLEXIBLE_ARRAY_MEMBER here. */ - Lisp_Object contents[1]; + Lisp_Object contents[1]; } u; }; |