]> git.eshelyaron.com Git - emacs.git/commitdiff
(x_set_mouse_color): Update calls to x_catch_errors
authorRichard M. Stallman <rms@gnu.org>
Sat, 3 May 1997 19:18:28 +0000 (19:18 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 3 May 1997 19:18:28 +0000 (19:18 +0000)
and x_uncatch_errors.

src/w32fns.c

index 67b45abcf602b0a90cbecb31b538c89485ae3d08..3a8a2eb1c3c52583c733f68de99494556970180d 100644 (file)
@@ -1528,6 +1528,7 @@ x_set_mouse_color (f, arg, oldval)
 {
 #if 0
   Cursor cursor, nontext_cursor, mode_cursor, cross_cursor;
+  int count;
 #endif
   int mask_color;
 
@@ -1544,7 +1545,7 @@ x_set_mouse_color (f, arg, oldval)
   BLOCK_INPUT;
 
   /* It's not okay to crash if the user selects a screwy cursor.  */
-  x_catch_errors (FRAME_W32_DISPLAY (f));
+  count = x_catch_errors (FRAME_W32_DISPLAY (f));
 
   if (!EQ (Qnil, Vx_pointer_shape))
     {
@@ -1587,7 +1588,7 @@ x_set_mouse_color (f, arg, oldval)
 
   /* Check and report errors with the above calls.  */
   x_check_errors (FRAME_W32_DISPLAY (f), "can't set cursor shape: %s");
-  x_uncatch_errors (FRAME_W32_DISPLAY (f));
+  x_uncatch_errors (FRAME_W32_DISPLAY (f), count);
 
   {
     XColor fore_color, back_color;