diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-10-02 16:23:58 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-10-02 16:23:58 +0200 |
commit | 586c70cdfede55a166e3564f1cb68a299d81987d (patch) | |
tree | e06b99bc5cb372212335dbee06976f6f0cb19417 /src/proto/ex_docmd.pro | |
parent | 4f888757257795969f2ab2e6fc3544a5bef3cdea (diff) | |
download | vim-git-586c70cdfede55a166e3564f1cb68a299d81987d.tar.gz |
patch 8.1.0447: GUI scrollbar test fails with Athena and Motifv8.1.0447
Problem: GUI scrollbar test fails with Athena and Motif.
Solution: When not using on-the-fly scrolling call normal_cmd().
Diffstat (limited to 'src/proto/ex_docmd.pro')
-rw-r--r-- | src/proto/ex_docmd.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/ex_docmd.pro b/src/proto/ex_docmd.pro index 8baf953b7..ed42f1cf1 100644 --- a/src/proto/ex_docmd.pro +++ b/src/proto/ex_docmd.pro @@ -59,7 +59,7 @@ int save_current_state(save_state_T *sst); void restore_current_state(save_state_T *sst); void ex_normal(exarg_T *eap); void exec_normal_cmd(char_u *cmd, int remap, int silent); -void exec_normal(int was_typed, int may_use_terminal_loop); +void exec_normal(int was_typed, int use_vpeekc, int may_use_terminal_loop); int find_cmdline_var(char_u *src, int *usedlen); char_u *eval_vars(char_u *src, char_u *srcstart, int *usedlen, linenr_T *lnump, char_u **errormsg, int *escaped); char_u *expand_sfile(char_u *arg); |