comparison src/proto/screen.pro @ 12441:854f49cf0abe v8.0.1100

patch 8.0.1100: stuck in redraw loop when 'lazyredraw' is set commit https://github.com/vim/vim/commit/072412ed45aa20a67aaa7e387d7f6bf59c7d3fbe Author: Bram Moolenaar <Bram@vim.org> Date: Wed Sep 13 22:11:35 2017 +0200 patch 8.0.1100: stuck in redraw loop when 'lazyredraw' is set Problem: Stuck in redraw loop when 'lazyredraw' is set. Solution: Don't loop on update_screen() when not redrawing. (Yasuhiro Matsumoto, closes #2082)
author Christian Brabandt <cb@256bit.org>
date Wed, 13 Sep 2017 22:15:05 +0200
parents d0b039e2ed56
children c415cdd49ea4
comparison
equal deleted inserted replaced
12440:f62b3864c693 12441:854f49cf0abe
8 void redraw_buf_and_status_later(buf_T *buf, int type); 8 void redraw_buf_and_status_later(buf_T *buf, int type);
9 int redraw_asap(int type); 9 int redraw_asap(int type);
10 void redraw_after_callback(int call_update_screen); 10 void redraw_after_callback(int call_update_screen);
11 void redrawWinline(linenr_T lnum, int invalid); 11 void redrawWinline(linenr_T lnum, int invalid);
12 void update_curbuf(int type); 12 void update_curbuf(int type);
13 void update_screen(int type_arg); 13 int update_screen(int type_arg);
14 int conceal_cursor_line(win_T *wp); 14 int conceal_cursor_line(win_T *wp);
15 void conceal_check_cursur_line(void); 15 void conceal_check_cursur_line(void);
16 void update_single_line(win_T *wp, linenr_T lnum); 16 void update_single_line(win_T *wp, linenr_T lnum);
17 void update_debug_sign(buf_T *buf, linenr_T lnum); 17 void update_debug_sign(buf_T *buf, linenr_T lnum);
18 void updateWindow(win_T *wp); 18 void updateWindow(win_T *wp);