diff src/xterm.c @ 47993:5dcac67745dc

(get_window_cursor_type): New arg ACTIVE_CURSOR. Callers changed (supply dummy arg).
author Kim F. Storm <storm@cua.dk>
date Thu, 24 Oct 2002 19:59:14 +0000
parents 080b4586492b
children 77df00035231
line wrap: on
line diff
--- a/src/xterm.c	Thu Oct 24 19:58:23 2002 +0000
+++ b/src/xterm.c	Thu Oct 24 19:59:14 2002 +0000
@@ -11802,6 +11802,7 @@
   struct frame *f = XFRAME (w->frame);
   int new_cursor_type;
   int new_cursor_width;
+  int active_cursor;
   struct glyph_matrix *current_glyphs;
   struct glyph_row *glyph_row;
   struct glyph *glyph;
@@ -11835,7 +11836,7 @@
   xassert (interrupt_input_blocked);
 
   /* Set new_cursor_type to the cursor we want to be displayed.  */
-  new_cursor_type = get_window_cursor_type (w, &new_cursor_width);
+  new_cursor_type = get_window_cursor_type (w, &new_cursor_width, &active_cursor);
 
   /* If cursor is currently being shown and we don't want it to be or
      it is in the wrong place, or the cursor type is not what we want,