# HG changeset patch # User Richard M. Stallman # Date 732755183 0 # Node ID 480abddc8bdd736962a07148f270bd750a36d086 # Parent 00e3cc81c1befbbea431f6f80856f47d73dfffb4 (struct window): New fields base_line_number and base_line_pos. diff -r 00e3cc81c1be -r 480abddc8bdd src/window.h --- a/src/window.h Sun Mar 21 23:04:18 1993 +0000 +++ b/src/window.h Sun Mar 21 23:06:23 1993 +0000 @@ -159,6 +159,14 @@ 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. */