diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-03-21 23:06:23 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-03-21 23:06:23 +0000 |
commit | f9cbf46eb68f36dbc87c63663284d38ddf4576f1 (patch) | |
tree | 63ba2aa0f90ebec53efd933333ed64a53720f1ca | |
parent | 328b7978ee42fdea9abaebe50bf1a79943ea37ca (diff) | |
download | emacs-f9cbf46eb68f36dbc87c63663284d38ddf4576f1.tar.gz |
(struct window): New fields base_line_number and base_line_pos.
-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 Lisp_Object display_table; /* Non-nil means window is marked as dedicated. */ Lisp_Object dedicated; + /* Line number and position of a line somewhere above the + top of the screen. */ + /* If this field is nil, it means we don't have a base line. */ + Lisp_Object base_line_number; + /* If this field is nil, it means we don't have a base line. + If it is a buffer, it means don't display the line number + as long as the window shows that buffer. */ + Lisp_Object base_line_pos; }; /* 1 if W is a minibuffer window. */ |