aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.h')
-rw-r--r--src/buffer.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/buffer.h b/src/buffer.h
index a75d81bfd4a..a0e06025893 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -1,11 +1,11 @@
1/* Header file for the buffer manipulation primitives. 1/* Header file for the buffer manipulation primitives.
2 Copyright (C) 1985, 1986, 1990 Free Software Foundation, Inc. 2 Copyright (C) 1985, 1986, 1990, 1992 Free Software Foundation, Inc.
3 3
4This file is part of GNU Emacs. 4This file is part of GNU Emacs.
5 5
6GNU Emacs is free software; you can redistribute it and/or modify 6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by 7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 1, or (at your option) 8the Free Software Foundation; either version 2, or (at your option)
9any later version. 9any later version.
10 10
11GNU Emacs is distributed in the hope that it will be useful, 11GNU Emacs is distributed in the hope that it will be useful,
@@ -296,6 +296,15 @@ extern struct buffer buffer_local_flags;
296 296
297extern struct buffer buffer_local_symbols; 297extern struct buffer buffer_local_symbols;
298 298
299/* This structure holds the required types for the values in the
300 buffer-local slots. If a slot contains Qnil, then the
301 corresponding buffer slot may contain a value of any type. If a
302 slot contains an integer, then prospective values' tags must be
303 equal to that integer. When a tag does not match, the function
304 buffer_slot_type_mismatch will signal an error. The value Qnil may
305 always be safely stored in any slot. */
306struct buffer buffer_local_types;
307
299/* Point in the current buffer. */ 308/* Point in the current buffer. */
300 309
301#define point (current_buffer->text.pt + 0) 310#define point (current_buffer->text.pt + 0)