diff options
| author | Richard M. Stallman | 1993-03-21 23:06:23 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-03-21 23:06:23 +0000 |
| commit | e024395e6d74ce9c8929b8bd4fa806bd34b11597 (patch) | |
| tree | f59a5e10451037270d475e807f31ca6176a138e7 /src | |
| parent | aa6d10fafd1aa7680a5942d86d5de781e8b65e6a (diff) | |
| download | emacs-e024395e6d74ce9c8929b8bd4fa806bd34b11597.tar.gz emacs-e024395e6d74ce9c8929b8bd4fa806bd34b11597.zip | |
(struct window): New fields base_line_number and base_line_pos.
Diffstat (limited to 'src')
| -rw-r--r-- | src/window.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/window.h b/src/window.h index cf43f508845..55bd3d06f79 100644 --- a/src/window.h +++ b/src/window.h | |||
| @@ -159,6 +159,14 @@ struct window | |||
| 159 | Lisp_Object display_table; | 159 | Lisp_Object display_table; |
| 160 | /* Non-nil means window is marked as dedicated. */ | 160 | /* Non-nil means window is marked as dedicated. */ |
| 161 | Lisp_Object dedicated; | 161 | Lisp_Object dedicated; |
| 162 | /* Line number and position of a line somewhere above the | ||
| 163 | top of the screen. */ | ||
| 164 | /* If this field is nil, it means we don't have a base line. */ | ||
| 165 | Lisp_Object base_line_number; | ||
| 166 | /* If this field is nil, it means we don't have a base line. | ||
| 167 | If it is a buffer, it means don't display the line number | ||
| 168 | as long as the window shows that buffer. */ | ||
| 169 | Lisp_Object base_line_pos; | ||
| 162 | }; | 170 | }; |
| 163 | 171 | ||
| 164 | /* 1 if W is a minibuffer window. */ | 172 | /* 1 if W is a minibuffer window. */ |