diff options
| author | Kim F. Storm | 2005-03-07 13:43:34 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2005-03-07 13:43:34 +0000 |
| commit | 83daa9dcec972866080d8bc19ebbad6f28d72743 (patch) | |
| tree | 12ac3d1c067f782c19639d7041016b53eba1d20b /src | |
| parent | bab88420b1bbd646021f8566dfe2ed8b9a559594 (diff) | |
| download | emacs-83daa9dcec972866080d8bc19ebbad6f28d72743.tar.gz emacs-83daa9dcec972866080d8bc19ebbad6f28d72743.zip | |
Fix last change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index 16b626959c6..284cad0dad2 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -20205,10 +20205,7 @@ notice_overwritten_cursor (w, area, x0, x1, y0, y1) | |||
| 20205 | || w->phys_cursor.vpos >= w->current_matrix->nrows | 20205 | || w->phys_cursor.vpos >= w->current_matrix->nrows |
| 20206 | || (row = w->current_matrix->rows + w->phys_cursor.vpos, | 20206 | || (row = w->current_matrix->rows + w->phys_cursor.vpos, |
| 20207 | !(row->enabled_p && row->displays_text_p))) | 20207 | !(row->enabled_p && row->displays_text_p))) |
| 20208 | { | 20208 | return; |
| 20209 | w->phys_cursor_on_p = 0; | ||
| 20210 | return; | ||
| 20211 | } | ||
| 20212 | 20209 | ||
| 20213 | if (row->cursor_in_fringe_p) | 20210 | if (row->cursor_in_fringe_p) |
| 20214 | { | 20211 | { |