(x_display_and_set_cursor): Display cursor of

non-selected windows depending on the setting of
cursor_in_non_selected_windows.
This commit is contained in:
Gerd Moellmann 2000-02-24 13:54:08 +00:00
parent d6d26ed3fb
commit e55a0b7912

View file

@ -10344,7 +10344,9 @@ x_display_and_set_cursor (w, on, hpos, vpos, x, y)
if (w != XWINDOW (selected_window)
|| f != FRAME_X_DISPLAY_INFO (f)->x_highlight_frame)
{
if (MINI_WINDOW_P (w))
extern int cursor_in_non_selected_windows;
if (MINI_WINDOW_P (w) || !cursor_in_non_selected_windows)
new_cursor_type = NO_CURSOR;
else
new_cursor_type = HOLLOW_BOX_CURSOR;