]> git.eshelyaron.com Git - emacs.git/commitdiff
(x_display_and_set_cursor): Check FRAME_CURSOR_WIDTH for bar cursor.
authorRichard M. Stallman <rms@gnu.org>
Sat, 27 Jul 2002 18:57:41 +0000 (18:57 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 27 Jul 2002 18:57:41 +0000 (18:57 +0000)
src/xterm.c

index 3fbdd725c43dce44d353cd5d2d3c1e7e0f1e213d..7216fdadb4cf2a825bc5c5dc3fed8028bbb64127 100644 (file)
@@ -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);