From 7569100503c1d0ad62b87d21e99b969feb096601 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 18 Mar 2002 04:38:15 +0000 Subject: [PATCH] (x_set_cursor_type): Set cursor_type_changed, not update_mode_lines, and always set it to 1. --- src/xfns.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/xfns.c b/src/xfns.c index ee8e3430c27..07097837080 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -1884,9 +1884,8 @@ x_set_cursor_type (f, arg, oldval) FRAME_DESIRED_CURSOR (f) = x_specified_cursor_type (arg, &width); f->output_data.x->cursor_width = width; - /* Make sure the cursor gets redrawn. This is overkill, but how - often do people change cursor types? */ - update_mode_lines++; + /* Make sure the cursor gets redrawn. */ + cursor_type_changed = 1; } void -- 2.39.2