diff src/proto/screen.pro @ 16835:7cade95272c4 v8.1.1419

patch 8.1.1419: listener callbacks may be called recursively commit https://github.com/vim/vim/commit/68a4b04a8d2471adf9de595745437c7cf20b98d8 Author: Bram Moolenaar <Bram@vim.org> Date: Wed May 29 22:28:29 2019 +0200 patch 8.1.1419: listener callbacks may be called recursively Problem: Listener callbacks may be called recursively. Solution: Set "updating_screen" while listener callbacks are invoked.
author Bram Moolenaar <Bram@vim.org>
date Wed, 29 May 2019 22:30:06 +0200
parents dd2e0b83a660
children 03f3a9ca2770
line wrap: on
line diff
--- a/src/proto/screen.pro
+++ b/src/proto/screen.pro
@@ -10,7 +10,7 @@ void redraw_buf_and_status_later(buf_T *
 int redraw_asap(int type);
 void redraw_after_callback(int call_update_screen);
 void redrawWinline(win_T *wp, linenr_T lnum);
-void reset_updating_screen(int may_resize_shell);
+void after_updating_screen(int may_resize_shell);
 void update_curbuf(int type);
 int update_screen(int type_arg);
 int conceal_cursor_line(win_T *wp);
@@ -18,7 +18,7 @@ void conceal_check_cursor_line(void);
 void update_debug_sign(buf_T *buf, linenr_T lnum);
 void updateWindow(win_T *wp);
 int screen_get_current_line_off(void);
-void screen_line(int row, int coloff, int endcol, int clear_width, int rlflag);
+void screen_line(int row, int coloff, int endcol, int clear_width, int flags);
 void rl_mirror(char_u *str);
 void status_redraw_all(void);
 void status_redraw_curbuf(void);