Mercurial > emacs
diff src/window.c @ 34615:a8944d7e6773
(Fset_window_point): Remove test for
cursor_in_non_selected_windows.
| author | Gerd Moellmann <gerd@gnu.org> |
|---|---|
| date | Fri, 15 Dec 2000 15:06:35 +0000 |
| parents | af86f7c0989d |
| children | 263ac9dec8b8 |
line wrap: on
line diff
--- 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;
