# HG changeset patch # User Gerd Moellmann # Date 976892795 0 # Node ID a8944d7e67730482ce52029e5e3db05ddc218d19 # Parent 772150b7906d93baa966775d7fe50de613ffd770 (Fset_window_point): Remove test for cursor_in_non_selected_windows. diff -r 772150b7906d -r a8944d7e6773 src/window.c --- a/src/window.c Fri Dec 15 14:49:34 2000 +0000 +++ b/src/window.c Fri Dec 15 15:06:35 2000 +0000 @@ -899,10 +899,9 @@ else set_marker_restricted (w->pointm, pos, w->buffer); - /* If displaying hollow box cursors in non-selected windows, we have - to make sure that redisplay updates the window to show the new - value of point. */ - if (cursor_in_non_selected_windows && !EQ (window, selected_window)) + /* We have to make sure that redisplay updates the window to show + the new value of point. */ + if (!EQ (window, selected_window)) ++windows_or_buffers_changed; return pos;