diff options
author | bfredl <bjorn.linse@gmail.com> | 2024-11-14 18:56:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-14 18:56:56 +0100 |
commit | 05d354e2165c2c331a33949d49095eef3503a32f (patch) | |
tree | 1be1b0a84e056d190e5e342ec24a9b0fc166ec99 /src/nvim/errors.h | |
parent | 434d5936b6e92e8a5557a03adf0e35b7902645ad (diff) | |
parent | de48fbbd5f8800bd7f1909a6fb41e53e871cf74c (diff) | |
download | rneovim-05d354e2165c2c331a33949d49095eef3503a32f.tar.gz rneovim-05d354e2165c2c331a33949d49095eef3503a32f.tar.bz2 rneovim-05d354e2165c2c331a33949d49095eef3503a32f.zip |
Merge pull request #27874 from luukvbaal/funcerr
fix(messages)!: vim.ui_attach message callbacks are unsafe
Diffstat (limited to 'src/nvim/errors.h')
-rw-r--r-- | src/nvim/errors.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/errors.h b/src/nvim/errors.h index 7897a71489..df94945a3d 100644 --- a/src/nvim/errors.h +++ b/src/nvim/errors.h @@ -151,7 +151,7 @@ EXTERN const char e_auabort[] INIT(= N_("E855: Autocommands caused command to ab EXTERN const char e_api_error[] INIT(= N_("E5555: API call: %s")); -EXTERN const char e_luv_api_disabled[] INIT(= N_("E5560: %s must not be called in a lua loop callback")); +EXTERN const char e_fast_api_disabled[] INIT(= N_("E5560: %s must not be called in a fast event context")); EXTERN const char e_floatonly[] INIT(= N_("E5601: Cannot close window, only floating window would remain")); EXTERN const char e_floatexchange[] INIT(= N_("E5602: Cannot exchange or rotate float")); |