From: Richard M. Stallman Date: Sat, 27 Jul 2002 18:57:41 +0000 (+0000) Subject: (x_display_and_set_cursor): Check FRAME_CURSOR_WIDTH for bar cursor. X-Git-Tag: ttn-vms-21-2-B4~13845 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4e361664e6dcf20d902baa41dbd65dd0ed60c906;p=emacs.git (x_display_and_set_cursor): Check FRAME_CURSOR_WIDTH for bar cursor. --- diff --git a/src/xterm.c b/src/xterm.c index 3fbdd725c43..7216fdadb4c 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -11885,7 +11885,10 @@ x_display_and_set_cursor (w, on, hpos, vpos, x, y) struct buffer *b = XBUFFER (w->buffer); if (EQ (b->cursor_type, Qt)) - new_cursor_type = FRAME_DESIRED_CURSOR (f); + { + new_cursor_type = FRAME_DESIRED_CURSOR (f); + new_cursor_width = FRAME_CURSOR_WIDTH (f); + } else new_cursor_type = x_specified_cursor_type (b->cursor_type, &new_cursor_width);