diff options
| author | Richard M. Stallman | 2002-03-18 04:38:15 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-03-18 04:38:15 +0000 |
| commit | 7569100503c1d0ad62b87d21e99b969feb096601 (patch) | |
| tree | 3b49e3e64e45738b9826d4d0c842a79c57060277 /src | |
| parent | df5c36cd5cb7f3c73b58373fb951b15d2cd03af7 (diff) | |
| download | emacs-7569100503c1d0ad62b87d21e99b969feb096601.tar.gz emacs-7569100503c1d0ad62b87d21e99b969feb096601.zip | |
(x_set_cursor_type): Set cursor_type_changed,
not update_mode_lines, and always set it to 1.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfns.c | 5 |
1 files 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) | |||
| 1884 | FRAME_DESIRED_CURSOR (f) = x_specified_cursor_type (arg, &width); | 1884 | FRAME_DESIRED_CURSOR (f) = x_specified_cursor_type (arg, &width); |
| 1885 | f->output_data.x->cursor_width = width; | 1885 | f->output_data.x->cursor_width = width; |
| 1886 | 1886 | ||
| 1887 | /* Make sure the cursor gets redrawn. This is overkill, but how | 1887 | /* Make sure the cursor gets redrawn. */ |
| 1888 | often do people change cursor types? */ | 1888 | cursor_type_changed = 1; |
| 1889 | update_mode_lines++; | ||
| 1890 | } | 1889 | } |
| 1891 | 1890 | ||
| 1892 | void | 1891 | void |