diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-08-12 21:15:34 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-08-12 21:15:34 +0200 |
commit | 893029ab20a06da9c0cf29661c9f6e2ec5583dce (patch) | |
tree | ccdaf0549aa564a6429d29a26b5c21fb9aafa05d /src/libvterm | |
parent | c977092053e1a27f571f8a27126717cc28af4e58 (diff) | |
download | vim-git-893029ab20a06da9c0cf29661c9f6e2ec5583dce.tar.gz |
patch 8.0.0920: cursor wrong after switching altscreen in terminalv8.0.0920
Problem: The cursor shape is wrong after switch back from an alternate
screen in a terminal window. (arius Gedminas)
Solution: Change bitfield to unsigned. Set flag that cursor shape was set.
Diffstat (limited to 'src/libvterm')
-rw-r--r-- | src/libvterm/src/vterm_internal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libvterm/src/vterm_internal.h b/src/libvterm/src/vterm_internal.h index d83588053..759382cb1 100644 --- a/src/libvterm/src/vterm_internal.h +++ b/src/libvterm/src/vterm_internal.h @@ -144,8 +144,8 @@ struct VTermState struct VTermPen pen; struct { - int cursor_visible:1; - int cursor_blink:1; + unsigned int cursor_visible:1; + unsigned int cursor_blink:1; unsigned int cursor_shape:2; } mode; } saved; |