]> git.eshelyaron.com Git - emacs.git/commitdiff
(redisplay_window): When restoring original buffer position, make sure
authorChong Yidong <cyd@stupidchicken.com>
Mon, 6 Aug 2007 17:23:03 +0000 (17:23 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Mon, 6 Aug 2007 17:23:03 +0000 (17:23 +0000)
it is still valid.

src/xdisp.c

index 46247beb10f2de3f874da6ec4c627c5ec7ed6151..1dd69e345905df33c24630d8c7b9071f2abed1a1 100644 (file)
@@ -13520,7 +13520,10 @@ redisplay_window (window, just_this_one_p)
   /* Restore current_buffer and value of point in it.  */
   TEMP_SET_PT_BOTH (CHARPOS (opoint), BYTEPOS (opoint));
   set_buffer_internal_1 (old);
-  TEMP_SET_PT_BOTH (CHARPOS (lpoint), BYTEPOS (lpoint));
+  /* Avoid an abort in TEMP_SET_PT_BOTH if the buffer has become
+     shorter.  This can be caused by log truncation in *Messages*. */
+  if (CHARPOS (lpoint) <= ZV)
+    TEMP_SET_PT_BOTH (CHARPOS (lpoint), BYTEPOS (lpoint));
 
   unbind_to (count, Qnil);
 }