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/>. */ | |||
| 31 | #include <limits.h> | 31 | #include <limits.h> |
| 32 | 32 | ||
| 33 | #include <intprops.h> | 33 | #include <intprops.h> |
| 34 | #include <verify.h> | ||
| 34 | 35 | ||
| 35 | INLINE_HEADER_BEGIN | 36 | INLINE_HEADER_BEGIN |
| 36 | 37 | ||
| @@ -1145,9 +1146,9 @@ struct Lisp_Vector | |||
| 1145 | /* ...but sometimes there is also a pointer internally used in | 1146 | /* ...but sometimes there is also a pointer internally used in |
| 1146 | vector allocation code. Usually you don't want to touch this. */ | 1147 | vector allocation code. Usually you don't want to touch this. */ |
| 1147 | struct Lisp_Vector *next; | 1148 | struct Lisp_Vector *next; |
| 1148 | 1149 | ||
| 1149 | /* We can't use FLEXIBLE_ARRAY_MEMBER here. */ | 1150 | /* We can't use FLEXIBLE_ARRAY_MEMBER here. */ |
| 1150 | Lisp_Object contents[1]; | 1151 | Lisp_Object contents[1]; |
| 1151 | } u; | 1152 | } u; |
| 1152 | }; | 1153 | }; |
| 1153 | 1154 | ||