diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-01-28 13:47:59 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-01-28 13:47:59 +0100 |
commit | 9a046fd08bcae319d39a4dbde2be81decee19013 (patch) | |
tree | d4f2eb3f05595e0b38ca7704011e16d428d14e6e /src/errors.h | |
parent | d697ddea1466d877a79f8c56d46361dc54e9baef (diff) | |
download | vim-git-9a046fd08bcae319d39a4dbde2be81decee19013.tar.gz |
patch 8.2.2420: too many problems with using all autocommand eventsv8.2.2420
Problem: Too many problems with using all autocommand events.
Solution: Disallow defining an autocommand for all events.
Diffstat (limited to 'src/errors.h')
-rw-r--r-- | src/errors.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/errors.h b/src/errors.h index 4bd4efea6..b2f6a55a8 100644 --- a/src/errors.h +++ b/src/errors.h @@ -345,3 +345,5 @@ EXTERN char e_invalid_operation_for_bool[] INIT(= N_("E1153: Invalid operation for bool")); EXTERN char e_divide_by_zero[] INIT(= N_("E1154: Divide by zero")); +EXTERN char e_cannot_define_autocommands_for_all_events[] + INIT(= N_("E1155: Cannot define autocommands for ALL events")); |