diff options
| author | Richard M. Stallman | 1995-01-27 07:18:11 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-01-27 07:18:11 +0000 |
| commit | 2e4a1e1f7e99dec3eba6da6c8355461cbd4d7a0a (patch) | |
| tree | cf3421a7cd04692ae1b3190a0f48e281fd754f64 | |
| parent | 943e065b3c5e5cb2ec81a2222f03faab864a562f (diff) | |
| download | emacs-2e4a1e1f7e99dec3eba6da6c8355461cbd4d7a0a.tar.gz emacs-2e4a1e1f7e99dec3eba6da6c8355461cbd4d7a0a.zip | |
(struct buffer): New field point_before_scroll.
| -rw-r--r-- | src/buffer.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/buffer.h b/src/buffer.h index 16d8bc68f8f..76cbf0ba4c0 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -382,6 +382,10 @@ struct buffer | |||
| 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. */ |