diff options
Diffstat (limited to 'src/fileio.c')
| -rw-r--r-- | src/fileio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fileio.c b/src/fileio.c index fa280f2db00..6918bea8c9d 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -3906,7 +3906,7 @@ union read_non_regular | |||
| 3906 | } s; | 3906 | } s; |
| 3907 | GCALIGNED_UNION_MEMBER | 3907 | GCALIGNED_UNION_MEMBER |
| 3908 | }; | 3908 | }; |
| 3909 | verify (GCALIGNED (union read_non_regular)); | 3909 | static_assert (GCALIGNED (union read_non_regular)); |
| 3910 | 3910 | ||
| 3911 | static Lisp_Object | 3911 | static Lisp_Object |
| 3912 | read_non_regular (Lisp_Object state) | 3912 | read_non_regular (Lisp_Object state) |
| @@ -6316,7 +6316,7 @@ A non-nil CURRENT-ONLY argument means save only current buffer. */) | |||
| 6316 | continue; | 6316 | continue; |
| 6317 | 6317 | ||
| 6318 | enum { growth_factor = 4 }; | 6318 | enum { growth_factor = 4 }; |
| 6319 | verify (BUF_BYTES_MAX <= EMACS_INT_MAX / growth_factor); | 6319 | static_assert (BUF_BYTES_MAX <= EMACS_INT_MAX / growth_factor); |
| 6320 | 6320 | ||
| 6321 | set_buffer_internal (b); | 6321 | set_buffer_internal (b); |
| 6322 | if (NILP (Vauto_save_include_big_deletions) | 6322 | if (NILP (Vauto_save_include_big_deletions) |