diff options
| author | Jason Rumney | 2001-10-21 21:23:03 +0000 |
|---|---|---|
| committer | Jason Rumney | 2001-10-21 21:23:03 +0000 |
| commit | 98515cf03bb90245f75b9b8267aaf76677ea7948 (patch) | |
| tree | 5d16a77c074e8e4f84f1fad433b7cdd082c805a6 | |
| parent | a6a1654e2556555a8672d29dd8409c4badc9f9d2 (diff) | |
| download | emacs-98515cf03bb90245f75b9b8267aaf76677ea7948.tar.gz emacs-98515cf03bb90245f75b9b8267aaf76677ea7948.zip | |
(x_erase_phys_cursor): Remove inverse_p.
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/w32term.c | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 215eb831482..97be71da542 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2001-10-21 Jason Rumney <jasonr@gnu.org> | ||
| 2 | |||
| 3 | * w32term.c (x_erase_phys_cursor): Remove inverse_p again. | ||
| 4 | |||
| 1 | 2001-10-21 Eli Zaretskii <eliz@is.elta.co.il> | 5 | 2001-10-21 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 6 | ||
| 3 | * mocklisp.c (Fml_if, Fml_provide_prefix_argument) | 7 | * mocklisp.c (Fml_if, Fml_provide_prefix_argument) |
diff --git a/src/w32term.c b/src/w32term.c index d57444f530a..2b6c6007bc7 100644 --- a/src/w32term.c +++ b/src/w32term.c | |||
| @@ -9427,8 +9427,6 @@ x_erase_phys_cursor (w) | |||
| 9427 | /* Erase the cursor by redrawing the character underneath it. */ | 9427 | /* Erase the cursor by redrawing the character underneath it. */ |
| 9428 | if (mouse_face_here_p) | 9428 | if (mouse_face_here_p) |
| 9429 | hl = DRAW_MOUSE_FACE; | 9429 | hl = DRAW_MOUSE_FACE; |
| 9430 | else if (cursor_row->inverse_p) | ||
| 9431 | hl = DRAW_INVERSE_VIDEO; | ||
| 9432 | else | 9430 | else |
| 9433 | hl = DRAW_NORMAL_TEXT; | 9431 | hl = DRAW_NORMAL_TEXT; |
| 9434 | x_draw_phys_cursor_glyph (w, cursor_row, hl); | 9432 | x_draw_phys_cursor_glyph (w, cursor_row, hl); |