diff options
| author | YAMAMOTO Mitsuharu | 2007-04-29 07:25:54 +0000 |
|---|---|---|
| committer | YAMAMOTO Mitsuharu | 2007-04-29 07:25:54 +0000 |
| commit | 207f10c66bb9a15d936c94f3c26546b1d8b53eb1 (patch) | |
| tree | dede35226a721b1dbd279136ddbeb0a5c6230d69 /src | |
| parent | 570d87805efd12f17bb1322a5e07d82d7884dfdb (diff) | |
| download | emacs-207f10c66bb9a15d936c94f3c26546b1d8b53eb1.tar.gz emacs-207f10c66bb9a15d936c94f3c26546b1d8b53eb1.zip | |
(try_window_reusing_current_matrix): Fix number of disabled lines.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/xdisp.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 25f3236bf70..f5da623e24c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2007-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 2 | |||
| 3 | * xdisp.c (try_window_reusing_current_matrix): Fix number of | ||
| 4 | disabled lines. | ||
| 5 | |||
| 1 | 2007-04-28 Richard Stallman <rms@gnu.org> | 6 | 2007-04-28 Richard Stallman <rms@gnu.org> |
| 2 | 7 | ||
| 3 | * lread.c (read_escape): In a string, \s is always space. | 8 | * lread.c (read_escape): In a string, \s is always space. |
diff --git a/src/xdisp.c b/src/xdisp.c index 02e59290158..82f24551f19 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -13811,7 +13811,7 @@ try_window_reusing_current_matrix (w) | |||
| 13811 | nrows_scrolled); | 13811 | nrows_scrolled); |
| 13812 | 13812 | ||
| 13813 | /* Disable lines that must be updated. */ | 13813 | /* Disable lines that must be updated. */ |
| 13814 | for (i = 0; i < it.vpos; ++i) | 13814 | for (i = 0; i < nrows_scrolled; ++i) |
| 13815 | (start_row + i)->enabled_p = 0; | 13815 | (start_row + i)->enabled_p = 0; |
| 13816 | 13816 | ||
| 13817 | /* Re-compute Y positions. */ | 13817 | /* Re-compute Y positions. */ |