diff options
Diffstat (limited to 'hurd')
-rw-r--r-- | hurd/ChangeLog | 4 | ||||
-rw-r--r-- | hurd/console.h | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/hurd/ChangeLog b/hurd/ChangeLog index 00de9a94..81f7d89a 100644 --- a/hurd/ChangeLog +++ b/hurd/ChangeLog @@ -1,3 +1,7 @@ +2002-08-28 Marcus Brinkmann <marcus@gnu.org> + + * console.h (struct cons_display): Fix comment on CUR_LINE. + 2002-08-22 Marcus Brinkmann <marcus@gnu.org> * console.h: Move here from ../console/. diff --git a/hurd/console.h b/hurd/console.h index a6728a26..27ddeeb2 100644 --- a/hurd/console.h +++ b/hurd/console.h @@ -85,7 +85,9 @@ struct cons_display { uint32_t width; /* Width of screen matrix. */ uint32_t lines; /* Length of whole matrix. */ - uint32_t cur_line; /* Beginning of visible area. This is only + uint32_t cur_line; /* Virtual start of visible area. Needs to be + taken module LINES to get the real start of + visible area in the matrix. This is only ever increased by the server, so clients can optimize scrolling. */ uint32_t scr_lines; /* Number of lines in scrollback buffer |