diff options
| author | Richard M. Stallman | 1996-09-02 05:10:58 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-09-02 05:10:58 +0000 |
| commit | 519052f372b65f0f5341cbc622f545a88adf3b10 (patch) | |
| tree | 03fe3df83014d93027058f332a9bda53eef682cb /src/buffer.h | |
| parent | aeafca1f94ff8146308b89a8e1a5ff865f6fce76 (diff) | |
| download | emacs-519052f372b65f0f5341cbc622f545a88adf3b10.tar.gz emacs-519052f372b65f0f5341cbc622f545a88adf3b10.zip | |
(strict buffer): New slot last_selected_window.
Diffstat (limited to 'src/buffer.h')
| -rw-r--r-- | src/buffer.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/buffer.h b/src/buffer.h index fafe6ec0b76..cbacfb97116 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -404,9 +404,13 @@ struct buffer | |||
| 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. */ |