diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-03-14 14:00:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-14 14:00:56 +0100 |
commit | d1e0f7454b5fc61d26db5af5ce00c1894e7c49fc (patch) | |
tree | ef972775c047745b19db5c06e1e490090d3a26f0 /src/nvim/ex_cmds.c | |
parent | 4f7879dff0f0dc22ddf4cb2a2095b88605a3bab0 (diff) | |
parent | d6ecead36406233cc56353dd05f3380f0497630f (diff) | |
download | rneovim-d1e0f7454b5fc61d26db5af5ce00c1894e7c49fc.tar.gz rneovim-d1e0f7454b5fc61d26db5af5ce00c1894e7c49fc.tar.bz2 rneovim-d1e0f7454b5fc61d26db5af5ce00c1894e7c49fc.zip |
Merge pull request #22666 from bfredl/unscreen
refactor(screen): screen.c delenda est
Diffstat (limited to 'src/nvim/ex_cmds.c')
-rw-r--r-- | src/nvim/ex_cmds.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index d398d3e06e..ac3c8c4f8e 100644 --- a/src/nvim/ex_cmds.c +++ b/src/nvim/ex_cmds.c @@ -77,7 +77,6 @@ #include "nvim/profile.h" #include "nvim/quickfix.h" #include "nvim/regexp.h" -#include "nvim/screen.h" #include "nvim/search.h" #include "nvim/spell.h" #include "nvim/strings.h" @@ -2658,7 +2657,7 @@ int do_ecmd(int fnum, char *ffname, char *sfname, exarg_T *eap, linenr_T newlnum msg_scroll = false; } if (!msg_scroll) { // wait a bit when overwriting an error msg - check_for_delay(false); + msg_check_for_delay(false); } msg_start(); msg_scroll = msg_scroll_save; |