Mercurial > emacs
comparison src/buffer.h @ 16066:2f421cfff6cc
(strict buffer): New slot last_selected_window.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Mon, 02 Sep 1996 05:10:58 +0000 |
| parents | ee40177f6c68 |
| children | 45a956359a95 |
comparison
equal
deleted
inserted
replaced
| 16065:595d0ac6eff6 | 16066:2f421cfff6cc |
|---|---|
| 402 t => any non-nil `invisible' property means invisible. | 402 t => any non-nil `invisible' property means invisible. |
| 403 A list => `invisible' property means invisible | 403 A list => `invisible' property means invisible |
| 404 if it is memq in that list. */ | 404 if it is memq in that list. */ |
| 405 Lisp_Object invisibility_spec; | 405 Lisp_Object invisibility_spec; |
| 406 | 406 |
| 407 /* This is the last window that was selected with this buffer in it, | |
| 408 or nil if that window no longer displays this buffer. */ | |
| 409 Lisp_Object last_selected_window; | |
| 410 | |
| 407 /* These are so we don't have to recompile everything | 411 /* These are so we don't have to recompile everything |
| 408 the next few times we add a new slot. */ | 412 the next few times we add a new slot. */ |
| 409 Lisp_Object extra1, extra2, extra3; | 413 Lisp_Object extra2, extra3; |
| 410 }; | 414 }; |
| 411 | 415 |
| 412 /* This points to the current buffer. */ | 416 /* This points to the current buffer. */ |
| 413 | 417 |
| 414 extern struct buffer *current_buffer; | 418 extern struct buffer *current_buffer; |
