diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-12-11 21:36:39 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-12-11 21:36:39 +0000 |
commit | 63a121b750c186db52de3d3ffbe016b89df8970b (patch) | |
tree | bcd140852b4e38be7722daa58a1a79c8563b0474 /src | |
parent | b348038631bb7cf318c56c19bf3ccae87e525687 (diff) | |
download | vim-git-7.0167.tar.gz |
updated for version 7.0167v7.0167
Diffstat (limited to 'src')
-rw-r--r-- | src/eval.c | 1 | ||||
-rw-r--r-- | src/main.c | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/eval.c b/src/eval.c index 04772225c..a3bf58d35 100644 --- a/src/eval.c +++ b/src/eval.c @@ -340,6 +340,7 @@ static struct vimvar {VV_NAME("scrollstart", VAR_STRING), 0}, {VV_NAME("swapname", VAR_STRING), VV_RO}, {VV_NAME("swapchoice", VAR_STRING), 0}, + {VV_NAME("swapcommand", VAR_STRING), VV_RO}, }; /* shorthand */ diff --git a/src/main.c b/src/main.c index 19bdb09e1..bd40c6c7a 100644 --- a/src/main.c +++ b/src/main.c @@ -3492,6 +3492,15 @@ eval_client_expr_to_string(expr) redir_off = save_ro; --emsg_skip; + /* A client can tell us to redraw, but not to display the cursor, so do + * that here. */ + setcursor(); + out_flush(); +#ifdef FEAT_GUI + if (gui.in_use) + gui_update_cursor(FALSE, FALSE); +#endif + return res; } |