commit | 249591057b4840785c50e41dd850efb8a8faf435 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sat May 07 20:01:16 2022 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Sat May 07 20:01:16 2022 +0100 |
tree | e9ba171529cf753e7aab0ec9adf5be3fedc17d00 | |
parent | 9ff7d717aa3176de5c61de340deb93f41c7780fc [diff] [blame] |
patch 8.2.4911: the mode #defines are not clearly named Problem: The mode #defines are not clearly named. Solution: Prepend MODE_. Renumber them to put the mapped modes first.
diff --git a/src/insexpand.c b/src/insexpand.c index 2c549f8..86c6a14 100644 --- a/src/insexpand.c +++ b/src/insexpand.c
@@ -2883,7 +2883,7 @@ || check_for_list_arg(argvars, 1) == FAIL)) return; - if ((State & INSERT) == 0) + if ((State & MODE_INSERT) == 0) { emsg(_(e_complete_can_only_be_used_in_insert_mode)); return;