[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/w32term.c
From: |
Kim F. Storm |
Subject: |
[Emacs-diffs] Changes to emacs/src/w32term.c |
Date: |
Thu, 24 Oct 2002 15:58:23 -0400 |
Index: emacs/src/w32term.c
diff -c emacs/src/w32term.c:1.167 emacs/src/w32term.c:1.168
*** emacs/src/w32term.c:1.167 Wed Oct 23 12:53:48 2002
--- emacs/src/w32term.c Thu Oct 24 15:58:23 2002
***************
*** 9759,9769 ****
struct frame *f = XFRAME (w->frame);
int new_cursor_type;
int new_cursor_width;
struct glyph_matrix *current_glyphs;
struct glyph_row *glyph_row;
struct glyph *glyph;
- int cursor_non_selected;
- int active_cursor = 1;
/* This is pointless on invisible frames, and dangerous on garbaged
windows and frames; in the latter case, the frame or window may
--- 9759,9768 ----
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;
/* This is pointless on invisible frames, and dangerous on garbaged
windows and frames; in the latter case, the frame or window may
***************
*** 9794,9800 ****
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);
/* 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,
--- 9793,9799 ----
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,
&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,