]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix redisplay crash (Bug#6177).
authorChong Yidong <cyd@stupidchicken.com>
Thu, 27 May 2010 15:49:01 +0000 (11:49 -0400)
committerChong Yidong <cyd@stupidchicken.com>
Thu, 27 May 2010 15:49:01 +0000 (11:49 -0400)
* xdisp.c (redisplay_window): After redisplay, check if point is
still valid before setting it (Bug#6177).

src/ChangeLog
src/xdisp.c

index d7128960af7fba6c8fa4ab8b44eddf4d3234d7bd..883d603bf3583c1b850ca51224ed64a758df9885 100644 (file)
@@ -1,3 +1,8 @@
+2010-05-27  Chong Yidong  <cyd@stupidchicken.com>
+
+       * xdisp.c (redisplay_window): After redisplay, check if point is
+       still valid before setting it (Bug#6177).
+
 2010-05-27  Glenn Morris  <rgm@gnu.org>
 
        * Makefile.in, autodeps.mk, deps.mk, ns.mk:
index 699f375e2f45c2f890063d4bb6476be854e3ad7f..31fa5f39d5fb4f092b894c203dbff750e9f1da44 100644 (file)
@@ -14788,8 +14788,16 @@ redisplay_window (window, just_this_one_p)
         (*FRAME_TERMINAL (f)->redeem_scroll_bar_hook) (w);
     }
 
-  /* Restore current_buffer and value of point in it.  */
-  TEMP_SET_PT_BOTH (CHARPOS (opoint), BYTEPOS (opoint));
+  /* Restore current_buffer and value of point in it.  The window
+     update may have changed the buffer, so first make sure `opoint'
+     is still valid (Bug#6177).  */
+  if (CHARPOS (opoint) < BEGV)
+    TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
+  else if (CHARPOS (opoint) > ZV)
+    TEMP_SET_PT_BOTH (Z, Z_BYTE);
+  else
+    TEMP_SET_PT_BOTH (CHARPOS (opoint), BYTEPOS (opoint));
+
   set_buffer_internal_1 (old);
   /* Avoid an abort in TEMP_SET_PT_BOTH if the buffer has become
      shorter.  This can be caused by log truncation in *Messages*. */