diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-07-07 16:43:02 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-07-07 16:43:02 +0200 |
commit | 9d5d3c9c4468ad76f16b50eabd3d9e7eab2ed44d (patch) | |
tree | ecee7bf2e2c8a5eeaea1c00ab3461d34740b3ca6 /src/gui_mac.c | |
parent | 05e418d436410cd8bbf5a29ff81e8ad68408b1e8 (diff) | |
download | vim-git-9d5d3c9c4468ad76f16b50eabd3d9e7eab2ed44d.tar.gz |
patch 7.4.1995v7.4.1995
Problem: GUI: cursor drawn in wrong place if a timer callback causes a
screen update. (David Samvelyan)
Solution: Also redraw the cursor when it's blinking and on.
Diffstat (limited to 'src/gui_mac.c')
-rw-r--r-- | src/gui_mac.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gui_mac.c b/src/gui_mac.c index 06f92044b..b2e4d4b3f 100644 --- a/src/gui_mac.c +++ b/src/gui_mac.c @@ -5120,6 +5120,12 @@ gui_mch_is_blinking(void) return FALSE; } + int +gui_mch_is_blink_off(void) +{ + return FALSE; +} + /* * Cursor blink functions. * |