diff options
author | Famiu Haque <famiuhaque@proton.me> | 2023-10-13 20:16:15 +0600 |
---|---|---|
committer | Famiu Haque <famiuhaque@proton.me> | 2023-10-17 00:08:47 +0600 |
commit | af010e23f38a23bb74ea5b61e1b1a05e76410b5f (patch) | |
tree | 764d6ad85e652987818ec904a994d97eb398d0af /src/nvim/ex_eval.c | |
parent | 526234cf567a5a9cb0833fb05ef23075d98c2f3f (diff) | |
download | rneovim-af010e23f38a23bb74ea5b61e1b1a05e76410b5f.tar.gz rneovim-af010e23f38a23bb74ea5b61e1b1a05e76410b5f.tar.bz2 rneovim-af010e23f38a23bb74ea5b61e1b1a05e76410b5f.zip |
refactor(options): rename `empty_option` to `empty_string_option`
Diffstat (limited to 'src/nvim/ex_eval.c')
-rw-r--r-- | src/nvim/ex_eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_eval.c b/src/nvim/ex_eval.c index b49563f44d..c656f785c9 100644 --- a/src/nvim/ex_eval.c +++ b/src/nvim/ex_eval.c @@ -1342,7 +1342,7 @@ void ex_catch(exarg_T *eap) *end = NUL; } save_cpo = p_cpo; - p_cpo = empty_option; + p_cpo = empty_string_option; // Disable error messages, it will make current exception // invalid emsg_off++; |