src/xdisp.c (redisplay_window): Don't skip window redisplay if the
last value of point is not equal to buffer's point.
+2014-01-06 Eli Zaretskii <eliz@gnu.org>
+
+ * xdisp.c (redisplay_window): Don't skip window redisplay if the
+ last value of point is not equal to buffer's point. (Bug#16129)
+
2014-01-05 Paul Eggert <eggert@cs.ucla.edu>
Spelling fixes.
&& REDISPLAY_SOME_P ()
&& !w->redisplay
&& !f->redisplay
- && !buffer->text->redisplay)
+ && !buffer->text->redisplay
+ && BUF_PT (buffer) == w->last_point)
return;
/* Make sure that both W's markers are valid. */