From fadca6c6a947396eb6f44f2e72a495d0681fcd67 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 3 May 1997 19:18:28 +0000 Subject: [PATCH] (x_set_mouse_color): Update calls to x_catch_errors and x_uncatch_errors. --- src/w32fns.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/w32fns.c b/src/w32fns.c index 67b45abcf60..3a8a2eb1c3c 100644 --- a/src/w32fns.c +++ b/src/w32fns.c @@ -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; -- 2.39.5