diff options
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/buffer.c b/src/buffer.c index 78f1d977221..90c5efdfbf7 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -27,8 +27,6 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */ | |||
| 27 | #include <stdlib.h> | 27 | #include <stdlib.h> |
| 28 | #include <unistd.h> | 28 | #include <unistd.h> |
| 29 | 29 | ||
| 30 | #include <verify.h> | ||
| 31 | |||
| 32 | #include "lisp.h" | 30 | #include "lisp.h" |
| 33 | #include "intervals.h" | 31 | #include "intervals.h" |
| 34 | #include "process.h" | 32 | #include "process.h" |
| @@ -4860,7 +4858,7 @@ init_buffer_once (void) | |||
| 4860 | The local flag bits are in the local_var_flags slot of the buffer. */ | 4858 | The local flag bits are in the local_var_flags slot of the buffer. */ |
| 4861 | 4859 | ||
| 4862 | /* Nothing can work if this isn't true. */ | 4860 | /* Nothing can work if this isn't true. */ |
| 4863 | { verify (sizeof (EMACS_INT) == word_size); } | 4861 | { static_assert (sizeof (EMACS_INT) == word_size); } |
| 4864 | 4862 | ||
| 4865 | Vbuffer_alist = Qnil; | 4863 | Vbuffer_alist = Qnil; |
| 4866 | current_buffer = 0; | 4864 | current_buffer = 0; |