comparison src/xdisp.c @ 60489:7d03f539a034

Fix last change.
author Kim F. Storm <storm@cua.dk>
date Mon, 07 Mar 2005 13:43:34 +0000
parents 9fb42eb03094
children c17cdf5decaa
comparison
equal deleted inserted replaced
60488:234a7cab00e4 60489:7d03f539a034
20203 20203
20204 if (w->phys_cursor.vpos < 0 20204 if (w->phys_cursor.vpos < 0
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 {
20215 row->cursor_in_fringe_p = 0; 20212 row->cursor_in_fringe_p = 0;
20216 draw_fringe_bitmap (w, row, 0); 20213 draw_fringe_bitmap (w, row, 0);