diff options
author | Sam Bingner <sam@bingner.com> | 2018-12-13 15:11:52 -1000 |
---|---|---|
committer | Sam Bingner <sam@bingner.com> | 2018-12-13 15:11:52 -1000 |
commit | 957aa75d05c00731d7112bed7b68ce4568667d0c (patch) | |
tree | 0445216818495a7864eaa3acde1a1570d34b958d /data/vim/patches/8.1.0447 | |
parent | c54a909c8b5a8519130803cf55f68603c0ad3682 (diff) |
Update vim
Diffstat (limited to 'data/vim/patches/8.1.0447')
-rw-r--r-- | data/vim/patches/8.1.0447 | 133 |
1 files changed, 133 insertions, 0 deletions
diff --git a/data/vim/patches/8.1.0447 b/data/vim/patches/8.1.0447 new file mode 100644 index 000000000..34d400d02 --- /dev/null +++ b/data/vim/patches/8.1.0447 @@ -0,0 +1,133 @@ +To: vim_dev@googlegroups.com +Subject: Patch 8.1.0447 +Fcc: outbox +From: Bram Moolenaar <Bram@moolenaar.net> +Mime-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit +------------ + +Patch 8.1.0447 +Problem: GUI scrollbar test fails with Athena and Motif. +Solution: When not using on-the-fly scrolling call normal_cmd(). +Files: src/evalfunc.c, src/ex_docmd.c, src/proto/ex_docmd.pro + + +*** ../vim-8.1.0446/src/evalfunc.c 2018-09-30 21:43:17.183693376 +0200 +--- src/evalfunc.c 2018-10-02 16:21:11.584227329 +0200 +*************** +*** 3588,3594 **** + + if (!dangerous) + ++ex_normal_busy; +! exec_normal(TRUE, TRUE); + if (!dangerous) + --ex_normal_busy; + +--- 3588,3594 ---- + + if (!dangerous) + ++ex_normal_busy; +! exec_normal(TRUE, FALSE, TRUE); + if (!dangerous) + --ex_normal_busy; + +*************** +*** 13233,13238 **** +--- 13233,13242 ---- + return; + } + gui_drag_scrollbar(sb, value, dragging); ++ # ifndef USE_ON_FLY_SCROLL ++ // need to loop through normal_cmd() to handle the scroll events ++ exec_normal(FALSE, TRUE, FALSE); ++ # endif + } + #endif + +*** ../vim-8.1.0446/src/ex_docmd.c 2018-09-30 21:43:17.187693348 +0200 +--- src/ex_docmd.c 2018-10-02 16:22:09.711805347 +0200 +*************** +*** 10471,10491 **** + { + /* Stuff the argument into the typeahead buffer. */ + ins_typebuf(cmd, remap, 0, TRUE, silent); +! exec_normal(FALSE, FALSE); + } + + /* + * Execute normal_cmd() until there is no typeahead left. + */ + void +! exec_normal(int was_typed, int may_use_terminal_loop UNUSED) + { + oparg_T oa; + + clear_oparg(&oa); + finish_op = FALSE; +! while ((!stuff_empty() || ((was_typed || !typebuf_typed()) +! && typebuf.tb_len > 0)) && !got_int) + { + update_topline_cursor(); + #ifdef FEAT_TERMINAL +--- 10471,10494 ---- + { + /* Stuff the argument into the typeahead buffer. */ + ins_typebuf(cmd, remap, 0, TRUE, silent); +! exec_normal(FALSE, FALSE, FALSE); + } + + /* + * Execute normal_cmd() until there is no typeahead left. ++ * When "use_vpeekc" is TRUE use vpeekc() to check for available chars. + */ + void +! exec_normal(int was_typed, int use_vpeekc, int may_use_terminal_loop UNUSED) + { + oparg_T oa; + + clear_oparg(&oa); + finish_op = FALSE; +! while ((!stuff_empty() +! || ((was_typed || !typebuf_typed()) && typebuf.tb_len > 0) +! || (use_vpeekc && vpeekc() != NUL)) +! && !got_int) + { + update_topline_cursor(); + #ifdef FEAT_TERMINAL +*** ../vim-8.1.0446/src/proto/ex_docmd.pro 2018-09-15 15:42:36.501547749 +0200 +--- src/proto/ex_docmd.pro 2018-10-02 16:21:31.332084040 +0200 +*************** +*** 59,65 **** + 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); + 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); +--- 59,65 ---- + 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 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); +*** ../vim-8.1.0446/src/version.c 2018-10-02 15:06:36.761478333 +0200 +--- src/version.c 2018-10-02 16:22:59.479443571 +0200 +*************** +*** 794,795 **** +--- 794,797 ---- + { /* Add new patch number below this line */ ++ /**/ ++ 447, + /**/ + +-- +Birthdays are healthy. The more you have them, the longer you live. + + /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ +/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ +\\\ an exciting new programming language -- http://www.Zimbu.org /// + \\\ help me help AIDS victims -- http://ICCF-Holland.org /// |