+2005-06-10 Masatake YAMATO <jet@gyve.org>
+
+ * xdisp.c (note_mode_line_or_margin_highlight): Call clear_mouse_face
+ when mouse_face is not given.
+ Remove unnecessary tabs.
+
2005-06-09 Luc Teirlinck <teirllm@auburn.edu>
* window.c (Fselect_window): Adapt call to Fselect_frame.
int ignore;
int vpos, hpos;
-
+
b = Fprevious_single_property_change (make_number (charpos + 1),
Qmouse_face, string, Qnil);
if (NILP (b))
hpos = (area == ON_MODE_LINE
? (w->current_matrix)->nrows - 1
: 0);
-
+
/* If the re-rendering position is included in the last
re-rendering area, we should do nothing. */
if ( window == dpyinfo->mouse_face_window
&& vpos < dpyinfo->mouse_face_end_col
&& dpyinfo->mouse_face_beg_row == hpos )
return;
-
+
if (clear_mouse_face (dpyinfo))
cursor = No_Cursor;
-
+
dpyinfo->mouse_face_beg_col = vpos;
dpyinfo->mouse_face_beg_row = hpos;
if (NILP (pointer))
pointer = Qhand;
}
+ else if ((area == ON_MODE_LINE) || (area == ON_HEADER_LINE))
+ clear_mouse_face (dpyinfo);
}
-
define_frame_cursor1 (f, cursor, pointer);
}