diff options
| author | Gerd Moellmann | 2001-01-03 12:33:35 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-01-03 12:33:35 +0000 |
| commit | bafb434cc5948119a0d9cff1196471a16f68f475 (patch) | |
| tree | 43149ee60b53484c2c12483208e3bd56e105d14a /src | |
| parent | 38186d678fae2781c441c2e9273d97243647a7ad (diff) | |
| download | emacs-bafb434cc5948119a0d9cff1196471a16f68f475.tar.gz emacs-bafb434cc5948119a0d9cff1196471a16f68f475.zip | |
(try_window_reusing_current_matrix): Fix bug setting
the enabled_p flag of the glyph row at window_end_vpos to 0.
(handle_single_display_prop): Fix last change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 6 | ||||
| -rw-r--r-- | src/xdisp.c | 4 |
2 files changed, 9 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 6f3b4637ecc..4f622116ceb 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2001-01-03 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * xdisp.c (try_window_reusing_current_matrix): Fix bug setting | ||
| 4 | the enabled_p flag of the glyph row at window_end_vpos to 0. | ||
| 5 | (handle_single_display_prop): Fix last change. | ||
| 6 | |||
| 1 | 2001-01-02 Richard M. Stallman <rms@caffeine.ai.mit.edu> | 7 | 2001-01-02 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
| 2 | 8 | ||
| 3 | * window.c (Frecenter): Doc fix. | 9 | * window.c (Frecenter): Doc fix. |
diff --git a/src/xdisp.c b/src/xdisp.c index 3a65bbf6175..482a704aee2 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -2756,6 +2756,7 @@ handle_single_display_prop (it, prop, object, position) | |||
| 2756 | if (FRAME_TERMCAP_P (it->f) | 2756 | if (FRAME_TERMCAP_P (it->f) |
| 2757 | || FRAME_MSDOS_P (it->f) | 2757 | || FRAME_MSDOS_P (it->f) |
| 2758 | || FRAME_W32_CONSOLE_P (it->f)) | 2758 | || FRAME_W32_CONSOLE_P (it->f)) |
| 2759 | return 0; | ||
| 2759 | 2760 | ||
| 2760 | value = XCAR (XCDR (prop)); | 2761 | value = XCAR (XCDR (prop)); |
| 2761 | if (NUMBERP (value) && XFLOATINT (value) > 0) | 2762 | if (NUMBERP (value) && XFLOATINT (value) > 0) |
| @@ -2769,6 +2770,7 @@ handle_single_display_prop (it, prop, object, position) | |||
| 2769 | if (FRAME_TERMCAP_P (it->f) | 2770 | if (FRAME_TERMCAP_P (it->f) |
| 2770 | || FRAME_MSDOS_P (it->f) | 2771 | || FRAME_MSDOS_P (it->f) |
| 2771 | || FRAME_W32_CONSOLE_P (it->f)) | 2772 | || FRAME_W32_CONSOLE_P (it->f)) |
| 2773 | return 0; | ||
| 2772 | 2774 | ||
| 2773 | #ifdef HAVE_WINDOW_SYSTEM | 2775 | #ifdef HAVE_WINDOW_SYSTEM |
| 2774 | value = XCAR (XCDR (prop)); | 2776 | value = XCAR (XCDR (prop)); |
| @@ -10225,7 +10227,7 @@ try_window_reusing_current_matrix (w) | |||
| 10225 | 10227 | ||
| 10226 | /* Disable lines in the current matrix which are now | 10228 | /* Disable lines in the current matrix which are now |
| 10227 | below the window. */ | 10229 | below the window. */ |
| 10228 | for (; row < bottom_row; ++row) | 10230 | for (++row; row < bottom_row; ++row) |
| 10229 | row->enabled_p = 0; | 10231 | row->enabled_p = 0; |
| 10230 | } | 10232 | } |
| 10231 | 10233 | ||