diff options
| author | Kim F. Storm | 2002-10-24 19:59:14 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2002-10-24 19:59:14 +0000 |
| commit | e9c990273f2a2728a7eab34db037fde06902bb60 (patch) | |
| tree | ba9105b9bd3677d087ecee6aa63aa112e240b5c7 /src/macterm.c | |
| parent | 1cdf2e12769c9461828ad720b9cff427e76addbb (diff) | |
| download | emacs-e9c990273f2a2728a7eab34db037fde06902bb60.tar.gz emacs-e9c990273f2a2728a7eab34db037fde06902bb60.zip | |
(get_window_cursor_type): New arg ACTIVE_CURSOR.
Callers changed (supply dummy arg).
Diffstat (limited to 'src/macterm.c')
| -rw-r--r-- | src/macterm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/macterm.c b/src/macterm.c index 59b41a19e75..5da54e2c73f 100644 --- a/src/macterm.c +++ b/src/macterm.c | |||
| @@ -9298,6 +9298,7 @@ x_display_and_set_cursor (w, on, hpos, vpos, x, y) | |||
| 9298 | struct frame *f = XFRAME (w->frame); | 9298 | struct frame *f = XFRAME (w->frame); |
| 9299 | int new_cursor_type; | 9299 | int new_cursor_type; |
| 9300 | int new_cursor_width; | 9300 | int new_cursor_width; |
| 9301 | int active_cursor; | ||
| 9301 | struct glyph_matrix *current_glyphs; | 9302 | struct glyph_matrix *current_glyphs; |
| 9302 | struct glyph_row *glyph_row; | 9303 | struct glyph_row *glyph_row; |
| 9303 | struct glyph *glyph; | 9304 | struct glyph *glyph; |
| @@ -9331,7 +9332,7 @@ x_display_and_set_cursor (w, on, hpos, vpos, x, y) | |||
| 9331 | xassert (interrupt_input_blocked); | 9332 | xassert (interrupt_input_blocked); |
| 9332 | 9333 | ||
| 9333 | /* Set new_cursor_type to the cursor we want to be displayed. */ | 9334 | /* Set new_cursor_type to the cursor we want to be displayed. */ |
| 9334 | new_cursor_type = get_window_cursor_type (w, &new_cursor_width); | 9335 | new_cursor_type = get_window_cursor_type (w, &new_cursor_width, &active_cursor); |
| 9335 | 9336 | ||
| 9336 | 9337 | ||
| 9337 | /* If cursor is currently being shown and we don't want it to be or | 9338 | /* If cursor is currently being shown and we don't want it to be or |