Mercurial > emacs
comparison src/buffer.h @ 13264:4e7bb697c847
(struct buffer): New slot redisplay_end_trigger.
Also extra1, extra2, extra3.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Sat, 21 Oct 1995 23:14:59 +0000 |
| parents | bb56f8799f36 |
| children | 89bb535d206d |
comparison
equal
deleted
inserted
replaced
| 13263:b135b01ba0e2 | 13264:4e7bb697c847 |
|---|---|
| 400 /* Invisibility spec of this buffer. | 400 /* Invisibility spec of this buffer. |
| 401 t => any non-nil `invisible' property means invisible. | 401 t => any non-nil `invisible' property means invisible. |
| 402 A list => `invisible' property means invisible | 402 A list => `invisible' property means invisible |
| 403 if it is memq in that list. */ | 403 if it is memq in that list. */ |
| 404 Lisp_Object invisibility_spec; | 404 Lisp_Object invisibility_spec; |
| 405 | |
| 406 /* If redisplay goes beyond this point in the buffer, | |
| 407 run redisplay-end-trigger-hook. */ | |
| 408 Lisp_Object redisplay_end_trigger; | |
| 409 | |
| 410 /* These are so we don't have to recompile everything | |
| 411 the next few times we add a new slot. */ | |
| 412 Lisp_Object extra1, extra2, extra3; | |
| 405 }; | 413 }; |
| 406 | 414 |
| 407 /* This points to the current buffer. */ | 415 /* This points to the current buffer. */ |
| 408 | 416 |
| 409 extern struct buffer *current_buffer; | 417 extern struct buffer *current_buffer; |
