diff options
Diffstat (limited to 'src/buffer.h')
| -rw-r--r-- | src/buffer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/buffer.h b/src/buffer.h index a52ca7193e4..286c20d9e9c 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -477,6 +477,7 @@ struct buffer_text | |||
| 477 | /* Most code should use this macro to access Lisp fields in struct buffer. */ | 477 | /* Most code should use this macro to access Lisp fields in struct buffer. */ |
| 478 | 478 | ||
| 479 | #define BVAR(buf, field) ((buf)->INTERNAL_FIELD (field)) | 479 | #define BVAR(buf, field) ((buf)->INTERNAL_FIELD (field)) |
| 480 | #define BSET(buf, field, value) ((buf)->INTERNAL_FIELD (field) = (value)) | ||
| 480 | 481 | ||
| 481 | /* This is the structure that the buffer Lisp object points to. */ | 482 | /* This is the structure that the buffer Lisp object points to. */ |
| 482 | 483 | ||