Mercurial > emacs
comparison src/buffer.h @ 10562:ddc863fd062b
(struct buffer): New field point_before_scroll.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Fri, 27 Jan 1995 07:18:11 +0000 |
| parents | b0f6fc3f80b1 |
| children | 7bf07f10bed3 |
comparison
equal
deleted
inserted
replaced
| 10561:53f34c870201 | 10562:ddc863fd062b |
|---|---|
| 380 | 380 |
| 381 /* In an indirect buffer, or a buffer that is the base of an | 381 /* In an indirect buffer, or a buffer that is the base of an |
| 382 indirect buffer, this holds a marker that records | 382 indirect buffer, this holds a marker that records |
| 383 ZV for this buffer when the buffer is not current. */ | 383 ZV for this buffer when the buffer is not current. */ |
| 384 Lisp_Object zv_marker; | 384 Lisp_Object zv_marker; |
| 385 | |
| 386 /* This holds the point value before the last scroll operation. | |
| 387 Explicitly setting point sets this to nil. */ | |
| 388 Lisp_Object point_before_scroll; | |
| 385 }; | 389 }; |
| 386 | 390 |
| 387 /* This points to the current buffer. */ | 391 /* This points to the current buffer. */ |
| 388 | 392 |
| 389 extern struct buffer *current_buffer; | 393 extern struct buffer *current_buffer; |
