diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/xdisp.c | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index de5b1b1d89c..79d5867183a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2001-03-26 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * xdisp.c (try_window_id): Undo last change. | ||
| 4 | |||
| 1 | 2001-03-26 Eli Zaretskii <eliz@is.elta.co.il> | 5 | 2001-03-26 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 6 | ||
| 3 | * print.c (Fprin1, Fprin1_to_string, Fprinc, Fprint): Doc fix. | 7 | * print.c (Fprin1, Fprin1_to_string, Fprinc, Fprint): Doc fix. |
diff --git a/src/xdisp.c b/src/xdisp.c index 48fc7d7bc14..704b60c03da 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -11563,11 +11563,14 @@ try_window_id (w) | |||
| 11563 | else | 11563 | else |
| 11564 | abort (); | 11564 | abort (); |
| 11565 | 11565 | ||
| 11566 | #if 0 /* This leads to problems, for instance when the cursor is | ||
| 11567 | at ZV, and the cursor line displays no text. */ | ||
| 11566 | /* Disable rows below what's displayed in the window. This makes | 11568 | /* Disable rows below what's displayed in the window. This makes |
| 11567 | debugging easier. */ | 11569 | debugging easier. */ |
| 11568 | enable_glyph_matrix_rows (current_matrix, | 11570 | enable_glyph_matrix_rows (current_matrix, |
| 11569 | XFASTINT (w->window_end_vpos) + 1, | 11571 | XFASTINT (w->window_end_vpos) + 1, |
| 11570 | bottom_vpos, 0); | 11572 | bottom_vpos, 0); |
| 11573 | #endif | ||
| 11571 | 11574 | ||
| 11572 | IF_DEBUG (debug_end_pos = XFASTINT (w->window_end_pos); | 11575 | IF_DEBUG (debug_end_pos = XFASTINT (w->window_end_pos); |
| 11573 | debug_end_vpos = XFASTINT (w->window_end_vpos)); | 11576 | debug_end_vpos = XFASTINT (w->window_end_vpos)); |